| 12 | namespace OpenKneeboard { |
| 13 | |
| 14 | DebugTimer::DebugTimer(std::string_view label) |
| 15 | : mLabel(label), mStart(std::chrono::steady_clock::now()) { |
| 16 | } |
| 17 | |
| 18 | DebugTimer::~DebugTimer() { |
| 19 | this->End(); |
nothing calls this directly
no outgoing calls
no test coverage detected