diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-05-19 11:24:58 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2020-05-19 11:24:58 +0200 |
commit | ca3192d18abaa983fd3e8d5949ddc0ad1f1f88e6 (patch) | |
tree | 345ae04a473a971465e9bcf6eb5ef7c32a9ee2a3 /platform/uwp/thread_uwp.h | |
parent | 74b5d6839aa2008ba5cf0b71be156cf41494e8b3 (diff) | |
download | redot-engine-ca3192d18abaa983fd3e8d5949ddc0ad1f1f88e6.tar.gz |
Style: Fix unnecessary semicolons that confused clang-format
Diffstat (limited to 'platform/uwp/thread_uwp.h')
-rw-r--r-- | platform/uwp/thread_uwp.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/platform/uwp/thread_uwp.h b/platform/uwp/thread_uwp.h index 1f1d85a66a..9b2a2590a8 100644 --- a/platform/uwp/thread_uwp.h +++ b/platform/uwp/thread_uwp.h @@ -44,16 +44,16 @@ class ThreadUWP : public Thread { static ID get_thread_id_func_uwp(); static void wait_to_finish_func_uwp(Thread *p_thread); - ThreadUWP(); + ThreadUWP() {} public: virtual ID get_id() const; static void make_default(); - ~ThreadUWP(); + ~ThreadUWP() {} }; -#endif +#endif // UWP_ENABLED -#endif +#endif // THREAD_UWP_H |