]> SALOME platform Git repositories - tools/medcoupling.git/commitdiff
Salome HOME
fix: silence warning about maybe uninitialized parameter
authorSONOLET Aymeric <aymeric.sonolet@cea.fr>
Wed, 24 Apr 2024 07:37:21 +0000 (09:37 +0200)
committerSONOLET Aymeric <aymeric.sonolet@cea.fr>
Wed, 24 Apr 2024 07:37:21 +0000 (09:37 +0200)
src/INTERP_KERNEL/CellModel.cxx

index 0dabe6b356017031bcd86d411241f6986735869b..40c35a60cada174d22e27f48c412dce6d12c2112 100644 (file)
@@ -1216,6 +1216,7 @@ CellModel::CellModel(NormalizedCellType type) : _type(type)
             _nb_of_pts = std::numeric_limits<unsigned>::max();
             _nb_of_sons = std::numeric_limits<unsigned>::max();
             _dim = std::numeric_limits<unsigned>::max();
+            _is_simplex = false;
         } break;
     }
 }