fix windows build error

This commit is contained in:
Mathis Logemann 2022-11-24 19:39:04 +01:00
parent b26d0757b7
commit 2770657ba1

View file

@ -37,7 +37,7 @@ void simplify(std::string const& wkt_in, double tolerance, std::string const& me
output.emplace_back(x, y); output.emplace_back(x, y);
} }
std::string wkt_out; std::string wkt_out;
REQUIRE(mapnik::util::to_wkt(wkt_out, output)); REQUIRE(mapnik::util::to_wkt(wkt_out, mapnik::geometry::geometry<double>{output}));
REQUIRE(wkt_out == expected); REQUIRE(wkt_out == expected);
} }
} }