mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
drop using statement for ref_depth_
rather qualify member variable with this->
This commit is contained in:
parent
0f6e07676e
commit
aa389ff4f8
@ -181,7 +181,6 @@ namespace Opm
|
||||
WellSegments::MultiPhaseModel multiphaseModel() const;
|
||||
|
||||
// protected member variables from the Base class
|
||||
using Base::ref_depth_;
|
||||
using Base::number_of_perforations_; // TODO: can use well_ecl_?
|
||||
using Base::number_of_phases_;
|
||||
|
||||
|
@ -908,7 +908,7 @@ namespace Opm
|
||||
|
||||
const int nseg = this->numberOfSegments();
|
||||
double seg_bhp_press_diff = 0;
|
||||
double ref_depth = ref_depth_;
|
||||
double ref_depth = this->ref_depth_;
|
||||
for (int seg = 0; seg < nseg; ++seg) {
|
||||
// calculating the perforation rate for each perforation that belongs to this segment
|
||||
const double segment_depth = this->segmentSet()[seg].depth();
|
||||
|
Loading…
Reference in New Issue
Block a user