unsigned int getElapsedMilliseconds() const { return static_cast (getElapsedMicroseconds() / 1000); }
| 318 | // return static_cast<unsigned int>(getElapsedMicroseconds() / 1000); |
| 319 | //} |
| 320 | double getElapsedSeconds() const { return static_cast<double>(getCurrentTicks() - m_ticks) / 1000000.0; } |
| 321 | |
| 322 | private: |
| 323 | ticks_t m_ticks = 0; |
no test coverage detected