Fixes warning about set but unused variable.

This commit is contained in:
Markus Blatt
2023-04-11 17:36:25 +02:00
parent db1c823cbb
commit adc11caf99

View File

@@ -188,8 +188,8 @@ bool HexGridIntersectionTools::planeTriangleIntersection( const cvf::Plane& plan
CVF_ASSERT( false );
}
bool ok1 = false;
bool ok2 = false;
[[maybe_unused]] bool ok1 = false;
[[maybe_unused]] bool ok2 = false;
if ( topVx == 1 )
{