| 22 | #include "velapsedtimer.h" |
| 23 | |
| 24 | void VElapsedTimer::start() |
| 25 | { |
| 26 | clock = std::chrono::high_resolution_clock::now(); |
| 27 | m_valid = true; |
| 28 | } |
| 29 | |
| 30 | double VElapsedTimer::restart() |
| 31 | { |
nothing calls this directly
no outgoing calls
no test coverage detected