Commit eb2bf345 by Joao Paulo Magalhaes

Fix indentation.

[ci-skip]
parent 77b9362b
......@@ -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()) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment