From 2052c5515335d661898d02206a37b7b318b341fb Mon Sep 17 00:00:00 2001 From: bangerth Date: Thu, 25 Jul 2013 11:57:24 +0000 Subject: [PATCH] Re-indent function argument list. git-svn-id: https://svn.dealii.org/trunk@30156 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/source/grid/grid_generator.cc | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/deal.II/source/grid/grid_generator.cc b/deal.II/source/grid/grid_generator.cc index 443cc9d479..298de0aac3 100644 --- a/deal.II/source/grid/grid_generator.cc +++ b/deal.II/source/grid/grid_generator.cc @@ -186,9 +186,10 @@ namespace GridGenerator * outer. */ void - colorize_hyper_shell ( - Triangulation<2> &tria, - const Point<2> &, const double, const double) + colorize_hyper_shell (Triangulation<2> &tria, + const Point<2> &, + const double, + const double) { // In spite of receiving geometrical // data, we do this only based on @@ -196,11 +197,11 @@ namespace GridGenerator // For the mesh based on cube, // this is highly irregular - for (Triangulation<2>::cell_iterator cell = tria.begin(); - cell != tria.end(); ++cell) + for (Triangulation<2>::cell_iterator cell = tria.begin (); + cell != tria.end (); ++cell) { - Assert (cell->face(2)->at_boundary(), ExcInternalError()); - cell->face(2)->set_boundary_indicator(1); + Assert(cell->face(2)->at_boundary(), ExcInternalError()); + cell->face (2)->set_boundary_indicator (1); } } -- 2.39.5