From 597118ff5db2934ae61c989600223588a9f0ba97 Mon Sep 17 00:00:00 2001 From: Siarhei Uzunbajakau Date: Mon, 30 Sep 2024 07:19:26 +0200 Subject: [PATCH] A fix for a bug in the time table --- source/base/timer.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 << "|" -- 2.39.5