| 14680 | } |
| 14681 | |
| 14682 | void Timer::start() { |
| 14683 | m_nanoseconds = getCurrentNanosecondsSinceEpoch(); |
| 14684 | } |
| 14685 | auto Timer::getElapsedNanoseconds() const -> uint64_t { |
| 14686 | return getCurrentNanosecondsSinceEpoch() - m_nanoseconds; |
| 14687 | } |
no test coverage detected