mirror of
https://github.com/OPM/ResInsight.git
synced 2026-09-03 20:53:13 -05:00
Fix build issues due to unused variables
This commit is contained in:
committed by
Magne Sjaastad
parent
c3829da41b
commit
e19cb1a45b
-9
@@ -1644,9 +1644,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 )
|
||||
@@ -1711,9 +1708,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 )
|
||||
@@ -1781,9 +1775,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 )
|
||||
|
||||
Reference in New Issue
Block a user