From 2671a3fb35623f955a454dec87e2dea8adb42e93 Mon Sep 17 00:00:00 2001 From: Arne Morten Kvarving Date: Wed, 9 Nov 2022 13:06:32 +0100 Subject: [PATCH] fixed: primary variables no longer needs to be mutable --- opm/simulators/wells/StandardWellEval.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opm/simulators/wells/StandardWellEval.hpp b/opm/simulators/wells/StandardWellEval.hpp index d9f78b6b6..094035749 100644 --- a/opm/simulators/wells/StandardWellEval.hpp +++ b/opm/simulators/wells/StandardWellEval.hpp @@ -105,7 +105,7 @@ protected: void updateWellStateFromPrimaryVariables(WellState& well_state, DeferredLogger& deferred_logger) const; - mutable PrimaryVariables primary_variables_; //!< Primary variables for well + PrimaryVariables primary_variables_; //!< Primary variables for well // the saturations in the well bore under surface conditions at the beginning of the time step std::vector F0_;