mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Fix signed/unsigned warning
This commit is contained in:
@@ -321,7 +321,7 @@ std::vector<RigGeoMechWellLogExtractor::WbsParameterSource>
|
||||
bool validLasRegion = true;
|
||||
if (isPPResResult)
|
||||
{
|
||||
validLasRegion = intersectionIdx < gridValues.size() &&
|
||||
validLasRegion = intersectionIdx < (int64_t) gridValues.size() &&
|
||||
gridValues[intersectionIdx] != std::numeric_limits<double>::infinity();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user