From 426a17f0f2e59aa2221c65300c2ce12cd247f07d Mon Sep 17 00:00:00 2001 From: Barend Gehrels Date: Sun, 28 Nov 2010 14:38:59 +0000 Subject: [PATCH] Fixed deprecated boost-test-tools construct [SVN r66819] --- test/extensions/gis/projections/projections.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/extensions/gis/projections/projections.cpp b/test/extensions/gis/projections/projections.cpp index 9300744a5..ffb860bcd 100644 --- a/test/extensions/gis/projections/projections.cpp +++ b/test/extensions/gis/projections/projections.cpp @@ -33,7 +33,7 @@ inline void check(double v, double ve, std::string const& name, std::string const& axis) { - if (! boost::test_tools::check_is_close(v, ve, boost::test_tools::percent_tolerance(0.001))) + if (! boost::test_tools::check_is_close(v, ve, 0.001)) { std::ostringstream out; out << "\n" << name << " " << axis << " -> " << v << " != " << ve;