avoid boost deprecation warning

This commit is contained in:
Arne Morten Kvarving 2022-01-17 13:59:39 +01:00
parent 3317f10c4a
commit fd6299364b

View File

@ -21,7 +21,12 @@
#define BOOST_TEST_MODULE SolveTransposed3x3
#include <boost/test/unit_test.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
#include <dune/istl/bcrsmatrix.hh>