mirror of
https://github.com/google/benchmark.git
synced 2025-03-13 18:50:11 +08:00
simplify format string for complexity output
This commit is contained in:
parent
a24ef95e11
commit
f126852c8f
@ -124,11 +124,9 @@ void ConsoleReporter::PrintRunData(const Run& result) {
|
||||
big_o.c_str());
|
||||
}
|
||||
else if(result.report_rms) {
|
||||
ColorPrintf(COLOR_YELLOW, "%10.0f %s %10.0f %s ",
|
||||
ColorPrintf(COLOR_YELLOW, "%10.0f %% %10.0f %% ",
|
||||
result.real_accumulated_time * multiplier * 100,
|
||||
"%",
|
||||
result.cpu_accumulated_time * multiplier * 100,
|
||||
"%");
|
||||
result.cpu_accumulated_time * multiplier * 100);
|
||||
}
|
||||
else if (result.iterations == 0) {
|
||||
ColorPrintf(COLOR_YELLOW, "%10.0f %s %10.0f %s ",
|
||||
|
Loading…
Reference in New Issue
Block a user