From 5b257fc37a49ab645e01ea60935c3579d9ef1bc0 Mon Sep 17 00:00:00 2001 From: Barend Gehrels Date: Sun, 28 Nov 2010 22:06:00 +0000 Subject: [PATCH] Added comment for boost trunk where check_is_close is moved [SVN r66829] --- test/extensions/gis/projections/projections.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/extensions/gis/projections/projections.cpp b/test/extensions/gis/projections/projections.cpp index 773d60b69..9ea76e77b 100644 --- a/test/extensions/gis/projections/projections.cpp +++ b/test/extensions/gis/projections/projections.cpp @@ -28,6 +28,7 @@ #include #include #include + #include @@ -37,6 +38,8 @@ inline void check(double v, double ve, std::string const& name, std::string cons // Instead of (non-existing) BOOST_CHECK_CLOSE_MESSAGE(v, ve, 0.001, bla bla) if (! boost::test_tools::check_is_close(v, ve, boost::test_tools::percent_tolerance(0.001))) + // Boost.Trunk: + //if (! boost::test_tools::check_is_close(v, ve, boost::math::fpc::percent_tolerance(0.001))) { std::ostringstream out; out << "\n" << name << " " << axis << " -> " << v << " != " << ve;