From eb2bf345244eff2ceaa129e32ad112254e7603e2 Mon Sep 17 00:00:00 2001 From: Joao Paulo Magalhaes Date: Tue, 2 May 2017 11:37:46 +0100 Subject: [PATCH] Fix indentation. [ci-skip] --- src/console_reporter.cc | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/console_reporter.cc b/src/console_reporter.cc index 7513acf5..e8121800 100644 --- a/src/console_reporter.cc +++ b/src/console_reporter.cc @@ -132,10 +132,9 @@ void ConsoleReporter::PrintRunData(const Run& result) { } for (auto& c : result.counters) { - std::string s = HumanReadableNumber(c.second.value); - const char* unit = ((c.second.flags & Counter::Flags::kIsRate) ? - "/s" : ""); - printer(Out, COLOR_DEFAULT, " %s=%s%s", c.first.c_str(), s.c_str(), unit); + std::string s = HumanReadableNumber(c.second.value); + const char* unit = ((c.second.flags & Counter::kIsRate) ? "/s" : ""); + printer(Out, COLOR_DEFAULT, " %s=%s%s", c.first.c_str(), s.c_str(), unit); } if (!rate.empty()) {