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
55796623b5
commit
7421a3f7cd
@ -1480,7 +1480,7 @@ RigFemScalarResultFrames* RigFemPartResultsCollection::calculateCompactionValues
|
||||
}
|
||||
|
||||
#pragma omp parallel for
|
||||
for (long n = 0; n < nodeCount; n++)
|
||||
for (long n = 0; n < static_cast<long>(nodeCount); n++)
|
||||
{
|
||||
RefElement refElement;
|
||||
findReferenceElementForNode(*part, n, resVarAddr.refKLayerIndex, &refElement);
|
||||
|
Loading…
Reference in New Issue
Block a user