From 96924b0fff71043ede1dd57e8f5464357989bfe1 Mon Sep 17 00:00:00 2001 From: David Wells Date: Thu, 26 Apr 2018 22:26:36 -0400 Subject: [PATCH] Consistently use 'const bool' in function definitions. --- source/grid/grid_generator.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; -- 2.39.5