| 5154 | namespace Catch { |
| 5155 | |
| 5156 | auto BenchmarkLooper::getResolution() -> uint64_t { |
| 5157 | return getEstimatedClockResolution() * getCurrentContext().getConfig()->benchmarkResolutionMultiple(); |
| 5158 | } |
| 5159 | |
| 5160 | void BenchmarkLooper::reportStart() { |
| 5161 | getResultCapture().benchmarkStarting( { m_name } ); |
nothing calls this directly
no test coverage detected