Fixed mix of signed and unsigned value compare

This commit is contained in:
Magne Sjaastad
2017-02-03 10:14:02 +01:00
parent e2e689e591
commit 0633e6ca39
3 changed files with 3 additions and 3 deletions

View File

@@ -59,7 +59,7 @@ cvf::Vec3d RigWellPath::interpolatedPointAlongWellPath(double measuredDepth)
{
cvf::Vec3d wellPathPoint = cvf::Vec3d::ZERO;
int i = 0;
size_t i = 0;
while (i < m_measuredDepths.size() && m_measuredDepths.at(i) < measuredDepth )
{
i++;