From abe4d705e6adfac5c8e4a4de0a840f6712162111 Mon Sep 17 00:00:00 2001 From: Joshua Hansel Date: Tue, 4 Aug 2015 16:31:02 -0600 Subject: [PATCH] added const specifier to start_step() input parameter in the TimeStepControl class --- include/deal.II/algorithms/timestep_control.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/deal.II/algorithms/timestep_control.h b/include/deal.II/algorithms/timestep_control.h index ae1ad5f589..e657d6719b 100644 --- a/include/deal.II/algorithms/timestep_control.h +++ b/include/deal.II/algorithms/timestep_control.h @@ -143,7 +143,7 @@ namespace Algorithms * @param[in] step The size of the first step, which may be overwritten by * the time stepping strategy. */ - void start_step (double step); + void start_step (const double step); /** * Set size of the maximum step size. @@ -252,7 +252,7 @@ namespace Algorithms inline void - TimestepControl::start_step (double t) + TimestepControl::start_step (const double t) { start_step_val = t; } -- 2.39.5