Fix of linux Compile warnings

This commit is contained in:
JacobStoren
2013-12-14 09:38:55 +01:00
parent bf6fba191e
commit d4f5dd6803
3 changed files with 4 additions and 4 deletions

View File

@@ -200,7 +200,7 @@ void RigMainGrid::setFaults(const cvf::Collection<RigFault>& faults)
m_faults = faults;
#pragma omp parallel for
for (int i = 0; i < m_faults.size(); i++)
for (int i = 0; i < static_cast<int>(m_faults.size()); i++)
{
m_faults[i]->computeFaultFacesFromCellRanges(this->mainGrid());
}