From: Wolfgang Bangerth Date: Sat, 5 Aug 2023 10:26:00 +0000 (-0600) Subject: Avoid a compiler warning in a test. X-Git-Tag: relicensing~617^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=614f3f3547a0434bb7866dd3cae8ad01a94649b5;p=dealii.git Avoid a compiler warning in a test. --- 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;