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:
@@ -261,9 +261,6 @@ namespace Opm
|
|||||||
|
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
// protected functions from the Base class
|
|
||||||
using Base::getALQ;
|
|
||||||
|
|
||||||
// protected member variables from the Base class
|
// protected member variables from the Base class
|
||||||
using Base::well_ecl_;
|
using Base::well_ecl_;
|
||||||
using Base::param_;
|
using Base::param_;
|
||||||
|
|||||||
@@ -1750,7 +1750,7 @@ namespace Opm
|
|||||||
} else {
|
} else {
|
||||||
computeWellRatesWithThpAlqProd(
|
computeWellRatesWithThpAlqProd(
|
||||||
ebos_simulator, summary_state,
|
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,
|
return computeBhpAtThpLimitProdWithAlq(ebos_simulator,
|
||||||
summary_state,
|
summary_state,
|
||||||
deferred_logger,
|
deferred_logger,
|
||||||
getALQ(well_state));
|
this->getALQ(well_state));
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename TypeTag>
|
template<typename TypeTag>
|
||||||
|
|||||||
Reference in New Issue
Block a user