From 47f971706b3c372b1d643da2d845f0fbc5edc5b8 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 14 Jul 2023 00:49:16 -0600 Subject: [PATCH] Avoid the use of GeometryInfo. --- source/grid/grid_generator.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/grid/grid_generator.cc b/source/grid/grid_generator.cc index b37029d32b..4f1120eb9c 100644 --- a/source/grid/grid_generator.cc +++ b/source/grid/grid_generator.cc @@ -7538,7 +7538,7 @@ namespace GridGenerator double eps = 1e-3 * outer_radius; for (const auto &cell : triangulation.active_cell_iterators()) { - for (const unsigned int f : GeometryInfo::face_indices()) + for (const unsigned int f : cell->face_indices()) if (cell->face(f)->at_boundary()) { const double dx = cell->face(f)->center()(0); -- 2.39.5