mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-10 23:46:00 -06:00
Fix signed/unsigned compare
This commit is contained in:
parent
add7516532
commit
449813df06
@ -222,7 +222,7 @@ std::vector<std::vector<double>> RifStimPlanXmlReader::getAllDepthDataAtTimeSte
|
||||
QString depthDataStr = xmlStream.text().toString();
|
||||
for (int i = 0; i < depthDataStr.split(' ').size(); i++)
|
||||
{
|
||||
if (i < startingNegValuesXs) continue;
|
||||
if (i < static_cast<int>(startingNegValuesXs)) continue;
|
||||
else
|
||||
{
|
||||
QString value = depthDataStr.split(' ')[i];
|
||||
|
Loading…
Reference in New Issue
Block a user