| 32 | const std::chrono::time_point<std::chrono::high_resolution_clock> InternalClock::startPrecise = std::chrono::high_resolution_clock::now(); |
| 33 | |
| 34 | long long int InternalClock::now() |
| 35 | { |
| 36 | return std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::steady_clock::now() - start).count(); |
| 37 | } |
| 38 | |
| 39 | |
| 40 | long long int InternalClock::nowPrecise() |
no test coverage detected