| 192 | // and will thus never return zero. |
| 193 | |
| 194 | static LARGE_INTEGER __QueryPerformanceFrequency() { |
| 195 | LARGE_INTEGER val; |
| 196 | (void)QueryPerformanceFrequency(&val); |
| 197 | return val; |
| 198 | } |
| 199 | |
| 200 | static steady_clock::time_point __libcpp_steady_clock_now() { |
| 201 | static const LARGE_INTEGER freq = __QueryPerformanceFrequency(); |
no outgoing calls
no test coverage detected