Calculates clock resolution once, and remembers the result
| 2050 | |
| 2051 | // Calculates clock resolution once, and remembers the result |
| 2052 | Clock::duration clockResolution() noexcept { |
| 2053 | static Clock::duration sResolution = calcClockResolution(20); |
| 2054 | return sResolution; |
| 2055 | } |
| 2056 | |
| 2057 | ANKERL_NANOBENCH(IGNORE_PADDED_PUSH) |
| 2058 | struct IterationLogic::Impl { |
no test coverage detected