| 12078 | return getElapsedNanoseconds()/1000; |
| 12079 | } |
| 12080 | auto Timer::getElapsedMilliseconds() const -> unsigned int { |
| 12081 | return static_cast<unsigned int>(getElapsedMicroseconds()/1000); |
| 12082 | } |
| 12083 | auto Timer::getElapsedSeconds() const -> double { |
| 12084 | return getElapsedMicroseconds()/1000000.0; |
| 12085 | } |
nothing calls this directly
no outgoing calls
no test coverage detected