| 10573 | return getElapsedNanoseconds()/1000; |
| 10574 | } |
| 10575 | auto Timer::getElapsedMilliseconds() const -> unsigned int { |
| 10576 | return static_cast<unsigned int>(getElapsedMicroseconds()/1000); |
| 10577 | } |
| 10578 | auto Timer::getElapsedSeconds() const -> double { |
| 10579 | return getElapsedMicroseconds()/1000000.0; |
| 10580 | } |
nothing calls this directly
no outgoing calls
no test coverage detected