| 10486 | } |
| 10487 | |
| 10488 | void Timer::start() { |
| 10489 | m_nanoseconds = getCurrentNanosecondsSinceEpoch(); |
| 10490 | } |
| 10491 | auto Timer::getElapsedNanoseconds() const -> uint64_t { |
| 10492 | return getCurrentNanosecondsSinceEpoch() - m_nanoseconds; |
| 10493 | } |
no test coverage detected