From: Qingyuan Shi Date: Sat, 1 Feb 2025 03:47:07 +0000 (+0800) Subject: Replace one usage of GeometryInfo::face_indices() with reference_cell().face_ind... X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3aa52eb017098493caaf818a3bfcd34a37eebc56;p=dealii.git Replace one usage of GeometryInfo::face_indices() with reference_cell().face_indices() for simplex mesh support new line at end of file remove changelog file --- diff --git a/source/grid/grid_generator.cc b/source/grid/grid_generator.cc index 285c66f11c..2dccd53282 100644 --- a/source/grid/grid_generator.cc +++ b/source/grid/grid_generator.cc @@ -8710,7 +8710,7 @@ namespace GridGenerator volume_mesh.begin(0); cell != volume_mesh.end(0); ++cell) - for (const unsigned int i : GeometryInfo::face_indices()) + for (const unsigned int i : cell->reference_cell().face_indices()) { const typename MeshType::face_iterator face = cell->face(i);