| 4953 | namespace Catch { |
| 4954 | |
| 4955 | auto BenchmarkLooper::getResolution() -> uint64_t { |
| 4956 | return getEstimatedClockResolution() * getCurrentContext().getConfig()->benchmarkResolutionMultiple(); |
| 4957 | } |
| 4958 | |
| 4959 | void BenchmarkLooper::reportStart() { |
| 4960 | getResultCapture().benchmarkStarting({m_name}); |
nothing calls this directly
no test coverage detected