| 14248 | } |
| 14249 | |
| 14250 | void Timer::start() { |
| 14251 | m_nanoseconds = getCurrentNanosecondsSinceEpoch(); |
| 14252 | } |
| 14253 | auto Timer::getElapsedNanoseconds() const -> uint64_t { |
| 14254 | return getCurrentNanosecondsSinceEpoch() - m_nanoseconds; |
| 14255 | } |
no test coverage detected