From: Siarhei Uzunbajakau Date: Mon, 30 Sep 2024 05:19:26 +0000 (+0200) Subject: A fix for a bug in the time table X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F17737%2Fhead;p=dealii.git A fix for a bug in the time table --- diff --git a/source/base/timer.cc b/source/base/timer.cc index d05cd92362..da4c87827d 100644 --- a/source/base/timer.cc +++ b/source/base/timer.cc @@ -728,7 +728,8 @@ TimerOutput::print_summary() const << "------------+------------+" << '\n' << "| Total CPU/wall time elapsed since start " << extra_space << "|" << std::setw(10) << std::setprecision(3) - << std::right << total_cpu_time << "s | |" + << std::right << total_cpu_time << "s | " + << extra_space << "|" << std::setw(10) << std::setprecision(3) << total_wall_time << "s | |" << "\n| " << extra_space << "|"