From 18a05b7bff77c71a2d52e6dd91b01241d8e57965 Mon Sep 17 00:00:00 2001 From: Magne Sjaastad Date: Thu, 12 Sep 2013 13:56:01 +0200 Subject: [PATCH] Fixed compiler warning p4#: 22392 --- ApplicationCode/ReservoirDataModel/RigSingleWellResultsData.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ApplicationCode/ReservoirDataModel/RigSingleWellResultsData.cpp b/ApplicationCode/ReservoirDataModel/RigSingleWellResultsData.cpp index 924b68a5a9..74cd3128ac 100644 --- a/ApplicationCode/ReservoirDataModel/RigSingleWellResultsData.cpp +++ b/ApplicationCode/ReservoirDataModel/RigSingleWellResultsData.cpp @@ -247,7 +247,7 @@ void RigSingleWellResultsData::computeStaticWellCellPath() for (bIt = staticWellBranches.begin(); bIt != staticWellBranches.end(); ++bIt) { - if (bIt->first >= m_wellCellsTimeSteps[0].m_wellResultBranches.size()) + if (bIt->first >= static_cast(m_wellCellsTimeSteps[0].m_wellResultBranches.size())) { continue; }