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:
parent
c9fd4604db
commit
161690d9c8
@ -889,7 +889,7 @@ RigEclipseWellLogExtractor* RimWellLogTrack::createSimWellExtractor(RimWellLogPl
|
||||
RimProject* proj = RiaApplication::instance()->project();
|
||||
std::vector<const RigWellPath*> wellPaths = proj->simulationWellBranches(simWellName);
|
||||
|
||||
CVF_ASSERT(branchIndex < wellPaths.size());
|
||||
CVF_ASSERT(branchIndex < static_cast<int>(wellPaths.size()));
|
||||
|
||||
if (wellPaths.size() == 0) return nullptr;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user