From be06a2d3013716749513b4f1c35f834efa73cd4c Mon Sep 17 00:00:00 2001 From: artemp Date: Mon, 25 Apr 2016 11:20:23 +0200 Subject: [PATCH] require boost >= 1.58 for `spatially_equal(geom_0, geom_1)` test ref #3380 --- test/unit/serialization/wkb_test.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/unit/serialization/wkb_test.cpp b/test/unit/serialization/wkb_test.cpp index f82c4f32f..9a3bc1e86 100644 --- a/test/unit/serialization/wkb_test.cpp +++ b/test/unit/serialization/wkb_test.cpp @@ -106,7 +106,9 @@ TEST_CASE("Well-known-geometries") { REQUIRE(wkt0 == wkt1); // compare spatially (NOTE: GeometryCollection comparison also enforces strict order) +#if BOOST_VERSION >= 105800 REQUIRE(spatially_equal(geom_0, geom_1)); +#endif } } }