#include <chrono> #include <thread> void util_sleep(int64_t msec) { std::this_thread::sleep_for(std::chrono::milliseconds(msec)); }
Recommended Posts