mirror of
https://github.com/OPM/ResInsight.git
synced 2026-09-03 20:53:13 -05:00
Build fix
This commit is contained in:
committed by
Kristian Bendiksen
parent
6421e09557
commit
34a77a8f20
@@ -280,7 +280,7 @@ void RigGriddedPart3d::generateGeometry( const std::array<cvf::Vec3d, 12>& input
|
||||
|
||||
m_meshLines.push_back( { fromPos, toPos } );
|
||||
|
||||
for ( int h = 0; h <= nHorzCells; h++ )
|
||||
for ( int h = 0; h <= (int)nHorzCells; h++ )
|
||||
{
|
||||
p = toPos - horizontalPartition[h] * stepHorz;
|
||||
|
||||
@@ -357,7 +357,7 @@ void RigGriddedPart3d::generateGeometry( const std::array<cvf::Vec3d, 12>& input
|
||||
|
||||
int i = layerIndexOffset;
|
||||
|
||||
for ( int h = 0; h < nHorzCells; h++ )
|
||||
for ( int h = 0; h < (int)nHorzCells; h++ )
|
||||
{
|
||||
for ( int t = 0; t < nThicknessCells; t++, elementIdx++ )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user