mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
avoid boost deprecation warning
This commit is contained in:
parent
3317f10c4a
commit
fd6299364b
@ -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>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user