diff --git a/include/mapnik/util/geometry_to_wkt.hpp b/include/mapnik/util/geometry_to_wkt.hpp index 8d3ad7c4e..962909f00 100644 --- a/include/mapnik/util/geometry_to_wkt.hpp +++ b/include/mapnik/util/geometry_to_wkt.hpp @@ -29,7 +29,7 @@ #include #include #include -#include +#include // boost #include @@ -42,7 +42,7 @@ bool to_wkt(std::string & wkt, mapnik::geometry_type const& geom) { typedef std::back_insert_iterator sink_type; sink_type sink(wkt); - mapnik::util::wkt_generator generator; + wkt_generator generator; bool result = karma::generate(sink, generator, geom); return result; }