summaryrefslogtreecommitdiffstats
path: root/platform/uwp/thread_uwp.h
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2020-05-19 11:24:58 +0200
committerRémi Verschelde <rverschelde@gmail.com>2020-05-19 11:24:58 +0200
commitca3192d18abaa983fd3e8d5949ddc0ad1f1f88e6 (patch)
tree345ae04a473a971465e9bcf6eb5ef7c32a9ee2a3 /platform/uwp/thread_uwp.h
parent74b5d6839aa2008ba5cf0b71be156cf41494e8b3 (diff)
downloadredot-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.h8
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