mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Fix signed/unsigned compare
This commit is contained in:
@@ -184,7 +184,7 @@ void RicSummaryPlotTemplateTools::appendSummaryPlotToPlotCollection(
|
||||
|
||||
maximumIndexValue = std::max( maximumIndexValue, indexValue );
|
||||
|
||||
if ( conversionOk && indexValue < selectedEnsembles.size() )
|
||||
if ( conversionOk && indexValue < static_cast<int>( selectedEnsembles.size() ) )
|
||||
{
|
||||
auto summaryCaseY = selectedEnsembles[indexValue];
|
||||
curveSet->setSummaryCaseCollection( summaryCaseY );
|
||||
|
||||
Reference in New Issue
Block a user