From: Wolfgang Bangerth Date: Thu, 13 Aug 2009 14:38:55 +0000 (+0000) Subject: Make output_results not const, so that we can use computing_timer in there. X-Git-Tag: v8.0.0~7314 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bd80e000d1815a9cb37df770fb995e182ee81f82;p=dealii.git Make output_results not const, so that we can use computing_timer in there. git-svn-id: https://svn.dealii.org/trunk@19254 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-32/step-32.cc b/deal.II/examples/step-32/step-32.cc index b39f291af4..06d9d47015 100644 --- a/deal.II/examples/step-32/step-32.cc +++ b/deal.II/examples/step-32/step-32.cc @@ -808,7 +808,7 @@ class BoussinesqFlowProblem double get_maximal_velocity () const; std::pair get_extrapolated_temperature_range () const; void solve (); - void output_results () const; + void output_results (); void refine_mesh (const unsigned int max_grid_level); double @@ -2635,7 +2635,7 @@ void BoussinesqFlowProblem::solve () // single processor actually does some work // here), so everything should be clear here: template -void BoussinesqFlowProblem::output_results () const +void BoussinesqFlowProblem::output_results () { if (timestep_number % 10 != 0) return;