From 0deb92587725efa4bfb4cfbe64bf1b476b85ad52 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 14 Nov 2023 08:37:26 -0700 Subject: [PATCH] Another attempt at telling the compiler that everything is initialized. --- include/deal.II/base/geometry_info.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/deal.II/base/geometry_info.h b/include/deal.II/base/geometry_info.h index 11205f1a9a..9b7f66d907 100644 --- a/include/deal.II/base/geometry_info.h +++ b/include/deal.II/base/geometry_info.h @@ -4426,8 +4426,9 @@ GeometryInfo<2>::child_cell_on_face(const RefinementCase<2> &ref_case, // refined neighbor. this simplifies setting neighbor // information in execute_refinement. constexpr unsigned int - subcells[2][RefinementPossibilities<2>::isotropic_refinement] - [faces_per_cell][max_children_per_face] = { + subcells[/* possible face orientation */ 2] + [/* number of different ways to refine a cell */ 4] + [/* faces_per_cell */ 4][/* max_children_per_face */ 2] = { { // Normal orientation (face_flip = false) {{0, 0}, {1, 1}, {0, 1}, {0, 1}}, // cut_x -- 2.39.5