From 90081265e8d77eb528af37f2a5bfdae35c5da080 Mon Sep 17 00:00:00 2001 From: SONOLET Aymeric Date: Wed, 24 Apr 2024 09:37:21 +0200 Subject: [PATCH] fix: silence warning about maybe uninitialized parameter --- src/INTERP_KERNEL/CellModel.cxx | 1 + 1 file changed, 1 insertion(+) 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; } } -- 2.39.2