From 81eddc683a329625f0113ddab33f8fa4ac295bf6 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 25 Sep 2014 17:32:31 -0500 Subject: [PATCH] Fix an oversight in initializing the timer in step-32. --- examples/step-32/step-32.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) {} -- 2.39.5