| 10570 | return getCurrentNanosecondsSinceEpoch() - m_nanoseconds; |
| 10571 | } |
| 10572 | auto Timer::getElapsedMicroseconds() const -> uint64_t { |
| 10573 | return getElapsedNanoseconds()/1000; |
| 10574 | } |
| 10575 | auto Timer::getElapsedMilliseconds() const -> unsigned int { |
| 10576 | return static_cast<unsigned int>(getElapsedMicroseconds()/1000); |
| 10577 | } |
nothing calls this directly
no outgoing calls
no test coverage detected