mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-01-03 21:16:54 -06:00
drop using statement for flowPhaseToEbosCompIdx
rather qualify member function calls with this->
This commit is contained in:
parent
fc882fbc29
commit
d2fb4f3266
@ -181,7 +181,6 @@ namespace Opm
|
||||
WellSegments::MultiPhaseModel multiphaseModel() const;
|
||||
|
||||
// protected functions from the Base class
|
||||
using Base::flowPhaseToEbosCompIdx;
|
||||
using Base::flowPhaseToEbosPhaseIdx;
|
||||
using Base::ebosCompIdxToFlowCompIdx;
|
||||
using Base::getAllowCrossFlow;
|
||||
|
@ -1571,7 +1571,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);
|
||||
|
Loading…
Reference in New Issue
Block a user