Skip to content

Commit

Permalink
Merge pull request #14139 from bangerth/increment
Browse files Browse the repository at this point in the history
Use pre-increment operator.
  • Loading branch information
peterrum committed Jul 15, 2022
2 parents cf91e12 + 01c8521 commit 4ee0835
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/grid/grid_generator.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
}
Expand Down

0 comments on commit 4ee0835

Please sign in to comment.