From: David Wells Date: Fri, 27 Apr 2018 02:26:36 +0000 (-0400) Subject: Consistently use 'const bool' in function definitions. X-Git-Tag: v9.0.0-rc1~92^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=96924b0fff71043ede1dd57e8f5464357989bfe1;p=dealii.git Consistently use 'const bool' in function definitions. --- diff --git a/source/grid/grid_generator.cc b/source/grid/grid_generator.cc index bda6935951..d7730847e9 100644 --- a/source/grid/grid_generator.cc +++ b/source/grid/grid_generator.cc @@ -4252,7 +4252,7 @@ namespace GridGenerator const double, const double, const unsigned int, - bool) + const bool) { Assert(false, ExcNotImplemented()); } @@ -4266,7 +4266,7 @@ namespace GridGenerator const double outer_radius, const double, // width, const unsigned int, // width_repetition, - bool colorize) + const bool colorize) { const int dim = 2; @@ -4364,7 +4364,7 @@ namespace GridGenerator const double outer_radius, const double L, const unsigned int Nz, - bool colorize) + const bool colorize) { const int dim = 3;