aboutsummaryrefslogtreecommitdiffstats
path: root/include/thread.h
diff options
context:
space:
mode:
authorGravatar Sadie Powell2021-04-04 23:42:15 +0100
committerGravatar Sadie Powell2021-04-04 23:42:15 +0100
commit7d84e4900fa8f4ef96e8cf4bb67b76be7902e840 (patch)
treef5a81d03f572392e7547d58f979fdd488de6ff0b /include/thread.h
parentRemove the unused ExitCodes array. (diff)
Fix a ton of pedantic compiler warnings.
Diffstat (limited to 'include/thread.h')
-rw-r--r--include/thread.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/thread.h b/include/thread.h
index 3b15d1846..3f71a7037 100644
--- a/include/thread.h
+++ b/include/thread.h
@@ -40,7 +40,7 @@ class CoreExport Thread
virtual void OnStart() = 0;
/** Callback which is executed on the calling thread before this thread is stopped. */
- virtual void OnStop() { };
+ virtual void OnStop() { }
/** Initialises an instance of the Thread class. */
Thread() = default;