From 2770657ba1560b650a70d86338ba9e539ada1017 Mon Sep 17 00:00:00 2001 From: Mathis Logemann Date: Thu, 24 Nov 2022 19:39:04 +0100 Subject: [PATCH] fix windows build error --- test/unit/vertex_adapter/simplify_converters_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/vertex_adapter/simplify_converters_test.cpp b/test/unit/vertex_adapter/simplify_converters_test.cpp index 49765eca1..b13e3aa69 100644 --- a/test/unit/vertex_adapter/simplify_converters_test.cpp +++ b/test/unit/vertex_adapter/simplify_converters_test.cpp @@ -37,7 +37,7 @@ void simplify(std::string const& wkt_in, double tolerance, std::string const& me output.emplace_back(x, y); } std::string wkt_out; - REQUIRE(mapnik::util::to_wkt(wkt_out, output)); + REQUIRE(mapnik::util::to_wkt(wkt_out, mapnik::geometry::geometry{output})); REQUIRE(wkt_out == expected); } }