mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Use size_t instead of int
This commit is contained in:
parent
1ae30ef11a
commit
8d30b6e09f
@ -1475,7 +1475,7 @@ RigFemScalarResultFrames* RigFemPartResultsCollection::calculateCompactionValues
|
|||||||
frameCountProgress.incrementProgress();
|
frameCountProgress.incrementProgress();
|
||||||
|
|
||||||
compactionFrame.resize(nodeCount);
|
compactionFrame.resize(nodeCount);
|
||||||
for (int n = 0; n < nodeCount; n++)
|
for (size_t n = 0; n < nodeCount; n++)
|
||||||
{
|
{
|
||||||
RefElement refElement;
|
RefElement refElement;
|
||||||
findReferenceElementForNode(*part, n, resVarAddr.refKLayerIndex, &refElement);
|
findReferenceElementForNode(*part, n, resVarAddr.refKLayerIndex, &refElement);
|
||||||
|
Loading…
Reference in New Issue
Block a user