mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
drop using statement for perf_depth_
rather qualify member variable with this->
This commit is contained in:
@@ -262,7 +262,6 @@ namespace Opm
|
||||
|
||||
protected:
|
||||
// protected member variables from the Base class
|
||||
using Base::perf_depth_;
|
||||
using Base::well_cells_;
|
||||
using Base::number_of_perforations_;
|
||||
using Base::number_of_phases_;
|
||||
|
||||
@@ -64,7 +64,7 @@ namespace Opm
|
||||
const std::vector< Scalar >& B_avg)
|
||||
{
|
||||
Base::init(phase_usage_arg, depth_arg, gravity_arg, num_cells, B_avg);
|
||||
this->StdWellEval::init(perf_depth_, depth_arg, num_cells, Base::has_polymermw);
|
||||
this->StdWellEval::init(this->perf_depth_, depth_arg, num_cells, Base::has_polymermw);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user