From: Wolfgang Bangerth Date: Fri, 14 Jul 2023 06:49:16 +0000 (-0600) Subject: Avoid the use of GeometryInfo. X-Git-Tag: relicensing~679^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=47f971706b3c372b1d643da2d845f0fbc5edc5b8;p=dealii.git Avoid the use of GeometryInfo. --- 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);