| 14686 | return getCurrentNanosecondsSinceEpoch() - m_nanoseconds; |
| 14687 | } |
| 14688 | auto Timer::getElapsedMicroseconds() const -> uint64_t { |
| 14689 | return getElapsedNanoseconds()/1000; |
| 14690 | } |
| 14691 | auto Timer::getElapsedMilliseconds() const -> unsigned int { |
| 14692 | return static_cast<unsigned int>(getElapsedMicroseconds()/1000); |
| 14693 | } |
nothing calls this directly
no outgoing calls
no test coverage detected