mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Remove some structured bindings to avoid unused variable warnings
This commit is contained in:
@@ -871,8 +871,9 @@ RimWellPathGroup* RimWellPathCollection::findOrCreateWellPathGroup( gsl::not_nul
|
||||
RimWellPathGroup* group = new RimWellPathGroup;
|
||||
m_wellPaths.push_back( group );
|
||||
|
||||
for ( auto [existingWellPath, identicalTubeLength] : wellPathsWithCommonGeometry )
|
||||
for ( auto wellPathAndTubeLength : wellPathsWithCommonGeometry )
|
||||
{
|
||||
auto existingWellPath = wellPathAndTubeLength.first;
|
||||
detachWellPath( existingWellPath );
|
||||
group->addChildWellPath( existingWellPath );
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user