Remove WellSegments::operator<<()

This commit is contained in:
Joakim Hove 2020-02-11 17:09:51 +01:00
parent bd688edfde
commit 185c715cff
2 changed files with 0 additions and 8 deletions

View File

@ -138,7 +138,6 @@ namespace Opm {
// storage index in the vector
std::map<int, int> segment_number_to_index;
};
std::ostream& operator<<( std::ostream&, const WellSegments& );
}
#endif

View File

@ -510,13 +510,6 @@ namespace Opm {
return !( *this == rhs );
}
std::ostream& operator<<( std::ostream& stream, const WellSegments& well_segments) {
return stream
<< well_segments.wellName() << " { top: {" <<
" L: " << well_segments.lengthTopSegment() <<
" D: " << well_segments.depthTopSegment() <<
" V: " << well_segments.volumeTopSegment() << " }}";
}
const std::string WellSegments::LengthDepthToString(LengthDepth enumValue) {
switch (enumValue) {