From 9f759c171e7c2156b92b80ff17a35e363b3ecc67 Mon Sep 17 00:00:00 2001 From: Joseph Werle Date: Sat, 2 Sep 2023 10:26:56 -0400 Subject: [PATCH] fix(src/common.hh): set type in 'msleep' prototype --- src/common.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common.hh b/src/common.hh index e4d3084a33..a06b8845b2 100644 --- a/src/common.hh +++ b/src/common.hh @@ -1009,7 +1009,7 @@ namespace SSC { return bytes; } - inline auto msleep (auto n) { + inline auto msleep (uint64_t n) { std::this_thread::yield(); std::this_thread::sleep_for(std::chrono::milliseconds(n)); }