From: Wolfgang Bangerth Date: Fri, 15 Jul 2022 03:35:44 +0000 (-0600) Subject: Use pre-increment operator. X-Git-Tag: v9.5.0-rc1~1091^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=01c8521c902561131250fa3df4128f79dad20816;p=dealii.git Use pre-increment operator. --- diff --git a/source/grid/grid_generator.cc b/source/grid/grid_generator.cc index 637a714d0e..ac3307101b 100644 --- a/source/grid/grid_generator.cc +++ b/source/grid/grid_generator.cc @@ -6557,7 +6557,7 @@ namespace GridGenerator if (result_cell->face(f)->at_boundary()) result_cell->face(f)->set_boundary_id( cell->face(f)->boundary_id()); - result_cell++; + ++result_cell; } } }