From 1651c5d2ad6e5e69b43833b910dafe2ed8eb8cd9 Mon Sep 17 00:00:00 2001 From: Thaddeus Crews Date: Fri, 14 Jul 2023 10:12:39 -0500 Subject: [PATCH] Have core_bind.h thread type syntax match .cpp MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit • Functionally identical to prior implementation, but removes misattributed errors in VSCode intellisense --- core/core_bind.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/core_bind.h b/core/core_bind.h index 6b25510b143..a0d63101d26 100644 --- a/core/core_bind.h +++ b/core/core_bind.h @@ -230,8 +230,8 @@ public: String get_cache_dir() const; Error set_thread_name(const String &p_name); - Thread::ID get_thread_caller_id() const; - Thread::ID get_main_thread_id() const; + ::Thread::ID get_thread_caller_id() const; + ::Thread::ID get_main_thread_id() const; bool has_feature(const String &p_feature) const;