From 277d272f7f8ec5ba78b9a6bc8b33e668a8a41250 Mon Sep 17 00:00:00 2001 From: Arne Morten Kvarving Date: Wed, 18 Sep 2019 12:25:49 +0200 Subject: [PATCH] quell some unused parameter warnings --- opm/models/blackoil/blackoilfoammodules.hh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/opm/models/blackoil/blackoilfoammodules.hh b/opm/models/blackoil/blackoilfoammodules.hh index df95f5347..29de2aa77 100644 --- a/opm/models/blackoil/blackoilfoammodules.hh +++ b/opm/models/blackoil/blackoilfoammodules.hh @@ -241,8 +241,8 @@ public: /*! * \brief Register all foam specific VTK and ECL output modules. */ - static void registerOutputModules(Model& model, - Simulator& simulator) + static void registerOutputModules(Model& model OPM_UNUSED, + Simulator& simulator OPM_UNUSED) { if (!enableFoam) // foam have been disabled at compile time @@ -286,7 +286,7 @@ public: } - static std::string eqName(unsigned eqIdx) + static std::string eqName(unsigned eqIdx OPM_OPTIM_UNUSED) { assert(eqApplies(eqIdx));