From 8b7c14c4dbc5c400c8f6dceb54d81567b078924c Mon Sep 17 00:00:00 2001 From: Andreas Lauser Date: Fri, 19 Jan 2018 11:49:06 +0100 Subject: [PATCH] adapt to the reordering template arguments of get*_(fluidState) in opm-material --- ebos/eclproblem.hh | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/ebos/eclproblem.hh b/ebos/eclproblem.hh index 9d82d2b00..9e49c5b77 100644 --- a/ebos/eclproblem.hh +++ b/ebos/eclproblem.hh @@ -1207,9 +1207,8 @@ private: if (!dRsDtOnlyFreeGas_ || fs.saturation(gasPhaseIdx) > freeGasMinSaturation_) lastRs_[compressedDofIdx] = Opm::BlackOil::template getRs_(fs, - iq.pvtRegionIndex()); + FluidState, + Scalar>(fs, iq.pvtRegionIndex()); else lastRs_[compressedDofIdx] = std::numeric_limits::infinity(); } @@ -1236,9 +1235,8 @@ private: lastRv_[compressedDofIdx] = Opm::BlackOil::template getRv_(fs, - iq.pvtRegionIndex()); + FluidState, + Scalar>(fs, iq.pvtRegionIndex()); } } }