| 129 | } |
| 130 | |
| 131 | void EndDebugTimer() |
| 132 | { |
| 133 | auto endTime = std::chrono::high_resolution_clock::now(); |
| 134 | auto duration = std::chrono::duration_cast<std::chrono::microseconds>(endTime - startTime); |
| 135 | |
| 136 | PrintDebugMessage("Execution (microseconds): %d", duration); |
| 137 | } |
| 138 | |
| 139 | void PrintDebugMessage(LPCSTR msg, ...) |
| 140 | { |
nothing calls this directly
no test coverage detected