mirror of
https://github.com/OPM/ResInsight.git
synced 2026-09-03 20:53:13 -05:00
Fix of linux Compile warnings
This commit is contained in:
@@ -157,7 +157,7 @@ void RivFaultGeometryGenerator::computeArrays()
|
||||
const std::vector<RigFault::FaultFace>& faultFaces = m_fault->faultFaces();
|
||||
|
||||
#pragma omp parallel for
|
||||
for (int fIdx = 0; fIdx < faultFaces.size(); fIdx++)
|
||||
for (int fIdx = 0; fIdx < static_cast<int>(faultFaces.size()); fIdx++)
|
||||
{
|
||||
size_t cellIndex = faultFaces[fIdx].m_nativeGlobalCellIndex;
|
||||
cvf::StructGridInterface::FaceType face = faultFaces[fIdx].m_nativeFace;
|
||||
|
||||
Reference in New Issue
Block a user