| 12069 | } |
| 12070 | |
| 12071 | void Timer::start() { |
| 12072 | m_nanoseconds = getCurrentNanosecondsSinceEpoch(); |
| 12073 | } |
| 12074 | auto Timer::getElapsedNanoseconds() const -> uint64_t { |
| 12075 | return getCurrentNanosecondsSinceEpoch() - m_nanoseconds; |
| 12076 | } |
no test coverage detected