Get rid deprecation warning for newer DUNE versions.

This commit is contained in:
Markus Blatt
2022-10-14 21:19:23 +02:00
parent 8162b97c0e
commit 8d522a2c42
6 changed files with 42 additions and 10 deletions

View File

@@ -58,7 +58,11 @@ init_unit_test_func()
BOOST_AUTO_TEST_CASE(BroadCast)
{
auto cc = Dune::MPIHelper::getCollectiveCommunication();
#if DUNE_VERSION_NEWER(DUNE_COMMON, 2, 7)
const auto& cc = Dune::MPIHelper::getCommunication();
#else
const auto& cc = Dune::MPIHelper::getCollectiveCommunication();
#endif
std::vector<double> d(3);
if (cc.rank() == 1)