From: Wolfgang Bangerth Date: Thu, 25 Sep 2014 22:32:31 +0000 (-0500) Subject: Fix an oversight in initializing the timer in step-32. X-Git-Tag: v8.2.0-rc1~128^2~2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=81eddc683a329625f0113ddab33f8fa4ac295bf6;p=dealii.git Fix an oversight in initializing the timer in step-32. --- diff --git a/examples/step-32/step-32.cc b/examples/step-32/step-32.cc index d537b892a5..e669208c46 100644 --- a/examples/step-32/step-32.cc +++ b/examples/step-32/step-32.cc @@ -1241,7 +1241,8 @@ namespace Step32 rebuild_temperature_matrices (true), rebuild_temperature_preconditioner (true), - computing_timer (pcout, + computing_timer (MPI_COMM_WORLD, + pcout, TimerOutput::summary, TimerOutput::wall_times) {}