drop using statement for flowPhaseToEbosCompIdx

rather qualify member function calls with this->
This commit is contained in:
Arne Morten Kvarving 2021-09-06 12:58:16 +02:00
parent 48e282bd65
commit 35cc1b9a2a
2 changed files with 1 additions and 2 deletions

View File

@ -262,7 +262,6 @@ namespace Opm
protected:
// protected functions from the Base class
using Base::flowPhaseToEbosCompIdx;
using Base::flowPhaseToEbosPhaseIdx;
using Base::ebosCompIdxToFlowCompIdx;
using Base::wsalt;

View File

@ -2451,7 +2451,7 @@ namespace Opm
// Note: E100's notion of PI value phase mobility includes
// the reciprocal FVF.
const auto connMob =
mobility[ flowPhaseToEbosCompIdx(p) ].value()
mobility[ this->flowPhaseToEbosCompIdx(p) ].value()
* fs.invB(flowPhaseToEbosPhaseIdx(p)).value();
connPI[p] = connPICalc(connMob);