From 614f3f3547a0434bb7866dd3cae8ad01a94649b5 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Sat, 5 Aug 2023 04:26:00 -0600 Subject: [PATCH] Avoid a compiler warning in a test. --- tests/grid/grid_generator_plate_with_a_hole_4.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/grid/grid_generator_plate_with_a_hole_4.cc b/tests/grid/grid_generator_plate_with_a_hole_4.cc index 55acd8ecd3..af01f8e12b 100644 --- a/tests/grid/grid_generator_plate_with_a_hole_4.cc +++ b/tests/grid/grid_generator_plate_with_a_hole_4.cc @@ -68,7 +68,7 @@ test() return std::get<2>(t1) < std::get<2>(t2); }); - for (const auto & el : boundary_faces) + for (const auto &el : boundary_faces) deallog << "center: " << std::get<0>(el) << " boundary id: " << std::get<1>(el) << " manifold id: " << std::get<2>(el) << std::endl; -- 2.39.5