This commit is contained in:
Dane Springmeyer 2014-08-08 21:58:08 -07:00
parent bcc92c9693
commit 8ff987af6d
6 changed files with 15 additions and 3 deletions

View file

@ -27,6 +27,7 @@
// mapnik
#include <mapnik/value.hpp>
#include <mapnik/unicode.hpp>
#include <mapnik/attribute.hpp>

View file

@ -30,6 +30,7 @@
#include <mapnik/attribute.hpp>
#include <mapnik/expression_node.hpp>
#include <mapnik/color_factory.hpp>
#include <mapnik/noncopyable.hpp>
// boost
#include <boost/variant/static_visitor.hpp>

View file

@ -28,6 +28,9 @@
#include <mapnik/noncopyable.hpp>
#include <mapnik/value_types.hpp>
// icu
#include <unicode/unistr.h>
// stl
#include <vector>

View file

@ -30,7 +30,6 @@
// stl
#include <string>
#include <algorithm>
#include <locale>
namespace mapnik { namespace util {

View file

@ -38,6 +38,9 @@
#include <string>
#include <cmath>
#include <memory>
#include <iosfwd>
#include <cstddef>
#include <new>
// icu
#include <unicode/unistr.h>
@ -118,7 +121,7 @@ struct equals
}
template <typename T, typename U>
bool operator() (T const& /*lhs*/, U const& /*rhs*/) const
bool operator() (T const&, U const&) const
{
return false;
}

View file

@ -27,10 +27,15 @@
#include <mapnik/config.hpp>
// icu
#include <unicode/unistr.h> // for UnicodeString
#include <unicode/uversion.h> // for U_NAMESPACE_QUALIFIER
// stl
#include <iosfwd>
#include <cstddef>
namespace U_ICU_NAMESPACE {
class UnicodeString;
}
namespace mapnik {