iwyu
This commit is contained in:
parent
bcc92c9693
commit
8ff987af6d
6 changed files with 15 additions and 3 deletions
|
@ -27,6 +27,7 @@
|
|||
|
||||
// mapnik
|
||||
#include <mapnik/value.hpp>
|
||||
#include <mapnik/unicode.hpp>
|
||||
#include <mapnik/attribute.hpp>
|
||||
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -28,6 +28,9 @@
|
|||
#include <mapnik/noncopyable.hpp>
|
||||
#include <mapnik/value_types.hpp>
|
||||
|
||||
// icu
|
||||
#include <unicode/unistr.h>
|
||||
|
||||
// stl
|
||||
#include <vector>
|
||||
|
||||
|
|
|
@ -30,7 +30,6 @@
|
|||
// stl
|
||||
#include <string>
|
||||
#include <algorithm>
|
||||
#include <locale>
|
||||
|
||||
namespace mapnik { namespace util {
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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 {
|
||||
|
||||
|
|
Loading…
Reference in a new issue