| 28 | |
| 29 | |
| 30 | const uint64_t Time::GetTimestampMS() { |
| 31 | auto now_time = chrono::system_clock::now(); |
| 32 | uint64_t now = (chrono::duration_cast<chrono::milliseconds>(now_time.time_since_epoch())).count(); |
| 33 | return now; |
| 34 | } |
| 35 | |
| 36 | const uint64_t Time::GetSteadyClockMS() { |
| 37 | auto now_time = chrono::steady_clock::now(); |
nothing calls this directly
no outgoing calls
no test coverage detected