From b3f6740a689c31ee8b19082f8c4c139c676dddc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Atgeirr=20Fl=C3=B8=20Rasmussen?= Date: Fri, 11 Sep 2015 13:46:45 +0200 Subject: [PATCH] Silence more unused argument warnings. --- .../PiecewiseLinearTwoPhaseMaterial.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/opm/material/fluidmatrixinteractions/PiecewiseLinearTwoPhaseMaterial.hpp b/opm/material/fluidmatrixinteractions/PiecewiseLinearTwoPhaseMaterial.hpp index 19ba477ab..7c5f9afb1 100644 --- a/opm/material/fluidmatrixinteractions/PiecewiseLinearTwoPhaseMaterial.hpp +++ b/opm/material/fluidmatrixinteractions/PiecewiseLinearTwoPhaseMaterial.hpp @@ -109,7 +109,7 @@ public: * pressure differences. */ template - static void saturations(Container &values, const Params ¶ms, const FluidState &fs) + static void saturations(Container& /* values */, const Params& /* params */, const FluidState& /* fs */) { OPM_THROW(std::logic_error, "Not implemented: saturations()"); } /*! @@ -152,11 +152,11 @@ public: * \brief The saturation-capillary pressure curve */ template - static Evaluation Sw(const Params ¶ms, const FluidState &fs) + static Evaluation Sw(const Params& /* params */, const FluidState& /* fs */) { OPM_THROW(std::logic_error, "Not implemented: Sw()"); } template - static Evaluation twoPhaseSatSw(const Params ¶ms, const Evaluation& pC) + static Evaluation twoPhaseSatSw(const Params& /* params */, const Evaluation& /* pC */) { OPM_THROW(std::logic_error, "Not implemented: twoPhaseSatSw()"); } /*!