From: bangerth Date: Thu, 25 Jul 2013 11:57:24 +0000 (+0000) Subject: Re-indent function argument list. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2052c5515335d661898d02206a37b7b318b341fb;p=dealii-svn.git Re-indent function argument list. git-svn-id: https://svn.dealii.org/trunk@30156 0785d39b-7218-0410-832d-ea1e28bc413d --- 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); } }