quell boost deprecation warning with boost >= 1.71

This commit is contained in:
Arne Morten Kvarving 2020-09-03 09:30:36 +02:00
parent 79cf1839da
commit 30e9ab8169

View File

@ -49,7 +49,12 @@
#include <utility>
#include <boost/test/unit_test.hpp>
#include <boost/version.hpp>
#if BOOST_VERSION / 100000 == 1 && BOOST_VERSION / 100 % 1000 < 71
#include <boost/test/floating_point_comparison.hpp>
#else
#include <boost/test/tools/floating_point_comparison.hpp>
#endif
namespace { // Case utilities
namespace GridInput {