mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Fix build issues due to unused variables
This commit is contained in:
parent
b82566751e
commit
fee1608cda
@ -1648,9 +1648,6 @@ void RicWellPathExportMswCompletionsImpl::writeMainBoreWelsegsSegment( std::shar
|
||||
double startMD = segment->startMD();
|
||||
double endMD = segment->endMD();
|
||||
|
||||
double startTVD = segment->startTVD();
|
||||
double endTVD = segment->endTVD();
|
||||
|
||||
std::vector<std::pair<double, double>> subSegments = createSubSegmentMDPairs( startMD, endMD, maxSegmentLength );
|
||||
|
||||
for ( auto mdPair : subSegments )
|
||||
@ -1715,9 +1712,6 @@ void RicWellPathExportMswCompletionsImpl::writeValveWelsegsSegment( std::shared_
|
||||
double startMD = subSegment->startMD();
|
||||
double endMD = subSegment->endMD();
|
||||
|
||||
double startTVD = subSegment->startTVD();
|
||||
double endTVD = subSegment->endTVD();
|
||||
|
||||
std::vector<std::pair<double, double>> splitSegments = createSubSegmentMDPairs( startMD, endMD, maxSegmentLength );
|
||||
|
||||
for ( auto mdPair : splitSegments )
|
||||
@ -1785,9 +1779,6 @@ void RicWellPathExportMswCompletionsImpl::writeCompletionWelsegsSegment( std::sh
|
||||
double startMD = subSegment->startMD();
|
||||
double endMD = subSegment->endMD();
|
||||
|
||||
double startTVD = subSegment->startTVD();
|
||||
double endTVD = subSegment->endTVD();
|
||||
|
||||
std::vector<std::pair<double, double>> splitSegments = createSubSegmentMDPairs( startMD, endMD, maxSegmentLength );
|
||||
|
||||
for ( auto mdPair : splitSegments )
|
||||
|
Loading…
Reference in New Issue
Block a user