Use size_t instead of int

This commit is contained in:
Magne Sjaastad 2018-02-18 19:01:38 +01:00
parent 1ae30ef11a
commit 8d30b6e09f

View File

@ -1475,7 +1475,7 @@ RigFemScalarResultFrames* RigFemPartResultsCollection::calculateCompactionValues
frameCountProgress.incrementProgress();
compactionFrame.resize(nodeCount);
for (int n = 0; n < nodeCount; n++)
for (size_t n = 0; n < nodeCount; n++)
{
RefElement refElement;
findReferenceElementForNode(*part, n, resVarAddr.refKLayerIndex, &refElement);