| 188 | #endif |
| 189 | |
| 190 | void Sleep(uint32_t ms) |
| 191 | { |
| 192 | std::this_thread::sleep_for(std::chrono::milliseconds(ms)); |
| 193 | } |
| 194 | |
| 195 | static const auto _processStartTime = std::chrono::high_resolution_clock::now(); |
| 196 |
no outgoing calls
no test coverage detected