drop using statement for param_

rather qualify member variable with this->
This commit is contained in:
Arne Morten Kvarving
2021-09-06 12:58:16 +02:00
parent 79d8cf90fd
commit 73be71bff5
2 changed files with 8 additions and 9 deletions

View File

@@ -197,7 +197,7 @@ namespace Opm
/// \brief Wether the Jacobian will also have well contributions in it.
virtual bool jacobianContainsWellContributions() const override
{
return param_.matrix_add_well_contributions_;
return this->param_.matrix_add_well_contributions_;
}
virtual void gasLiftOptimizationStage1 (
@@ -262,7 +262,6 @@ namespace Opm
protected:
// protected member variables from the Base class
using Base::param_;
using Base::well_efficiency_factor_;
using Base::perf_depth_;
using Base::well_cells_;