| 10564 | } |
| 10565 | |
| 10566 | void Timer::start() { |
| 10567 | m_nanoseconds = getCurrentNanosecondsSinceEpoch(); |
| 10568 | } |
| 10569 | auto Timer::getElapsedNanoseconds() const -> uint64_t { |
| 10570 | return getCurrentNanosecondsSinceEpoch() - m_nanoseconds; |
| 10571 | } |
no test coverage detected