mirror of
https://github.com/boostorg/geometry.git
synced 2026-02-12 12:12:10 +00:00
Fixed deprecated boost-test-tools construct
[SVN r66819]
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user