mirror of
https://github.com/mapnik/mapnik.git
synced 2025-12-08 20:13:09 +00:00
temporarily comment to_wkt until we can fix compile with g++ (only works currently with clang++)
This commit is contained in:
parent
4b28739274
commit
05a09de211
@ -42,8 +42,9 @@ bool to_wkt(std::string & wkt, mapnik::geometry_type const& geom)
|
||||
{
|
||||
typedef std::back_insert_iterator<std::string> sink_type;
|
||||
sink_type sink(wkt);
|
||||
wkt_generator<sink_type> generator(true);
|
||||
bool result = karma::generate(sink, generator, geom);
|
||||
// disable temporarily until compile works with g++
|
||||
//wkt_generator<sink_type> generator(true);
|
||||
bool result = false;//karma::generate(sink, generator, geom);
|
||||
return result;
|
||||
}
|
||||
|
||||
@ -51,8 +52,9 @@ bool to_wkt(std::string & wkt, mapnik::geometry_container const& geom)
|
||||
{
|
||||
typedef std::back_insert_iterator<std::string> sink_type;
|
||||
sink_type sink(wkt);
|
||||
wkt_multi_generator<sink_type> generator;
|
||||
bool result = karma::generate(sink, generator, geom);
|
||||
// disable temporarily until compile works with g++
|
||||
//wkt_multi_generator<sink_type> generator;
|
||||
bool result = false;//karma::generate(sink, generator, geom);
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user