mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-01-03 21:16:54 -06:00
drop using statement for wsalt
rather qualify member function calls with this->
This commit is contained in:
parent
dae0e73327
commit
2c0743c888
@ -262,7 +262,6 @@ namespace Opm
|
||||
|
||||
protected:
|
||||
// protected functions from the Base class
|
||||
using Base::wsalt;
|
||||
using Base::wsolvent;
|
||||
using Base::wpolymer;
|
||||
using Base::wfoam;
|
||||
|
@ -682,7 +682,7 @@ namespace Opm
|
||||
const unsigned waterCompIdx = Indices::canonicalToActiveComponentIndex(FluidSystem::waterCompIdx);
|
||||
EvalWell cq_s_sm = cq_s[waterCompIdx];
|
||||
if (this->isInjector()) {
|
||||
cq_s_sm *= wsalt();
|
||||
cq_s_sm *= this->wsalt();
|
||||
} else {
|
||||
cq_s_sm *= this->extendEval(intQuants.fluidState().saltConcentration());
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user