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:
@@ -222,7 +222,7 @@ std::vector<std::vector<double>> RifStimPlanXmlReader::getAllDepthDataAtTimeSte
|
|||||||
QString depthDataStr = xmlStream.text().toString();
|
QString depthDataStr = xmlStream.text().toString();
|
||||||
for (int i = 0; i < depthDataStr.split(' ').size(); i++)
|
for (int i = 0; i < depthDataStr.split(' ').size(); i++)
|
||||||
{
|
{
|
||||||
if (i < startingNegValuesXs) continue;
|
if (i < static_cast<int>(startingNegValuesXs)) continue;
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
QString value = depthDataStr.split(' ')[i];
|
QString value = depthDataStr.split(' ')[i];
|
||||||
|
|||||||
Reference in New Issue
Block a user