| 21 | { |
| 22 | public: |
| 23 | BenchmarkTimer(const char* name) |
| 24 | : m_Name(name), m_Stopped(false) |
| 25 | { |
| 26 | m_StartTimepoint = std::chrono::high_resolution_clock::now(); |
| 27 | } |
| 28 | |
| 29 | ~BenchmarkTimer() |
| 30 | { |
nothing calls this directly
no outgoing calls
no test coverage detected