From: SONOLET Aymeric Date: Wed, 24 Apr 2024 07:37:21 +0000 (+0200) Subject: fix: silence warning about maybe uninitialized parameter X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=90081265e8d77eb528af37f2a5bfdae35c5da080;p=tools%2Fmedcoupling.git fix: silence warning about maybe uninitialized parameter --- diff --git a/src/INTERP_KERNEL/CellModel.cxx b/src/INTERP_KERNEL/CellModel.cxx index 0dabe6b35..40c35a60c 100644 --- a/src/INTERP_KERNEL/CellModel.cxx +++ b/src/INTERP_KERNEL/CellModel.cxx @@ -1216,6 +1216,7 @@ CellModel::CellModel(NormalizedCellType type) : _type(type) _nb_of_pts = std::numeric_limits::max(); _nb_of_sons = std::numeric_limits::max(); _dim = std::numeric_limits::max(); + _is_simplex = false; } break; } }