From 7e3b8b5cdb0c0579382a93d223bfb6e776999a35 Mon Sep 17 00:00:00 2001 From: kd-11 Date: Tue, 3 Sep 2024 12:52:50 +0300 Subject: [PATCH] c++-ify empty return --- Utilities/Thread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Utilities/Thread.h b/Utilities/Thread.h index bc5efd79c7..7f2e0b522f 100644 --- a/Utilities/Thread.h +++ b/Utilities/Thread.h @@ -522,7 +522,7 @@ class named_thread final : public Context, result_storage, thread_base return next(thread_ctrl::get_current()); } - return 0; + return {}; } #endif