Fix signed / unsigned compare

This commit is contained in:
Magne Sjaastad 2018-05-04 15:18:12 +02:00
parent 55796623b5
commit 7421a3f7cd

View File

@ -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);