mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
drop using statement for getALQ
rather qualify member function calls with this->
This commit is contained in:
parent
45de63f0f5
commit
874a7a3830
@ -261,9 +261,6 @@ namespace Opm
|
||||
|
||||
|
||||
protected:
|
||||
// protected functions from the Base class
|
||||
using Base::getALQ;
|
||||
|
||||
// protected member variables from the Base class
|
||||
using Base::well_ecl_;
|
||||
using Base::param_;
|
||||
|
@ -1750,7 +1750,7 @@ namespace Opm
|
||||
} else {
|
||||
computeWellRatesWithThpAlqProd(
|
||||
ebos_simulator, summary_state,
|
||||
deferred_logger, potentials, getALQ(well_state)
|
||||
deferred_logger, potentials, this->getALQ(well_state)
|
||||
);
|
||||
}
|
||||
|
||||
@ -2303,7 +2303,7 @@ namespace Opm
|
||||
return computeBhpAtThpLimitProdWithAlq(ebos_simulator,
|
||||
summary_state,
|
||||
deferred_logger,
|
||||
getALQ(well_state));
|
||||
this->getALQ(well_state));
|
||||
}
|
||||
|
||||
template<typename TypeTag>
|
||||
|
Loading…
Reference in New Issue
Block a user