Merge pull request #3593 from bska/suppress-unused-param

Mark 'comm' As Potentially Unused
This commit is contained in:
Bård Skaflestad
2021-10-10 21:50:53 +02:00
committed by GitHub

View File

@@ -218,8 +218,8 @@ namespace {
}
std::shared_ptr<Opm::EclipseState>
createEclipseState(Opm::Parallel::Communication comm,
const Opm::Deck& deck)
createEclipseState([[maybe_unused]] Opm::Parallel::Communication comm,
const Opm::Deck& deck)
{
#if HAVE_MPI
return std::make_shared<Opm::ParallelEclipseState>(deck, comm);