require boost >= 1.58 for spatially_equal(geom_0, geom_1) test ref #3380

This commit is contained in:
artemp 2016-04-25 11:20:23 +02:00
parent 1871e5f62d
commit be06a2d301

View file

@ -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
}
}
}