From 2e5e6df5c408c2b1bcd18d3cd25e5d1060a78a8f Mon Sep 17 00:00:00 2001 From: Matthias Maier Date: Sun, 15 Jan 2017 02:08:52 -0600 Subject: [PATCH] Bugfix: Add forgotten default parameter to function One of the overloaded GridGenerator::subdivided_hyper_rectangle variants has a missing default parameter for the last argument. In reference to #3802 --- include/deal.II/grid/grid_generator.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/deal.II/grid/grid_generator.h b/include/deal.II/grid/grid_generator.h index 1efc003f59..a78492cc4c 100644 --- a/include/deal.II/grid/grid_generator.h +++ b/include/deal.II/grid/grid_generator.h @@ -241,7 +241,7 @@ namespace GridGenerator const std::vector > &step_sizes, const Point &p_1, const Point &p_2, - const bool colorize); + const bool colorize=false); /** * Like the previous function, but with the following twist: the @p -- 2.39.5