| 6255 | namespace Catch { |
| 6256 | |
| 6257 | auto BenchmarkLooper::getResolution() -> uint64_t { |
| 6258 | return getEstimatedClockResolution() * getCurrentContext().getConfig()->benchmarkResolutionMultiple(); |
| 6259 | } |
| 6260 | |
| 6261 | void BenchmarkLooper::reportStart() { |
| 6262 | getResultCapture().benchmarkStarting( { m_name } ); |
nothing calls this directly
no test coverage detected