From a900fb47b3ce92a8838025afa05c7d69d299fe89 Mon Sep 17 00:00:00 2001 From: Reza Rastak Date: Tue, 21 Apr 2020 21:22:06 -0700 Subject: [PATCH] const is removed from private member variables of DiscreteTime --- include/deal.II/base/discrete_time.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/deal.II/base/discrete_time.h b/include/deal.II/base/discrete_time.h index 6337668446..6fa2d04069 100644 --- a/include/deal.II/base/discrete_time.h +++ b/include/deal.II/base/discrete_time.h @@ -365,12 +365,12 @@ private: /** * The beginning of the time interval. */ - const double start_time; + double start_time; /** *The end of the time interval. */ - const double end_time; + double end_time; /** * The current time. @@ -399,7 +399,7 @@ private: /** * The size of the first step. */ - const double start_step_size; + double start_step_size; /** * The step number i.e. the number of times the simulation time ha been -- 2.39.5