| 83 | } |
| 84 | |
| 85 | void printTime(const string &name, double time_avg_us) |
| 86 | { |
| 87 | cout << std::left << std::setw(35) << name << ": " |
| 88 | << "\033[33m" << std::fixed << std::setprecision(3) << time_avg_us << " us\033[0m" << endl; |
| 89 | } |
| 90 | |
| 91 | void printTimeStats(const string &name, const BenchmarkStats &stats) |
| 92 | { |
nothing calls this directly
no outgoing calls
no test coverage detected