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