aboutsummaryrefslogtreecommitdiffstats
path: root/include/thread.h
diff options
context:
space:
mode:
authorGravatar Sadie Powell2022-01-25 13:59:42 +0000
committerGravatar Sadie Powell2022-01-25 14:02:36 +0000
commitd79147e7afe2eca34780c607f78b11f8b3dd017d (patch)
treea3f9a145dd53f9c1c268ac9b521ac907b802eab0 /include/thread.h
parentFix a few Doxygen comment errors. (diff)
Abolish the infernal space before accessibility keywords.
Diffstat (limited to 'include/thread.h')
-rw-r--r--include/thread.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/thread.h b/include/thread.h
index 3f71a7037..01ecbe42d 100644
--- a/include/thread.h
+++ b/include/thread.h
@@ -23,7 +23,7 @@
class CoreExport Thread
{
- private:
+private:
/** Whether this thread is in the process of stopping. */
std::atomic_bool stopping = { false };
@@ -35,7 +35,7 @@ class CoreExport Thread
*/
static void StartInternal(Thread* thread);
- protected:
+protected:
/** Callback which is executed on this thread after it has started. */
virtual void OnStart() = 0;
@@ -45,7 +45,7 @@ class CoreExport Thread
/** Initialises an instance of the Thread class. */
Thread() = default;
- public:
+public:
/** Destroys an instance of the Thread class. */
virtual ~Thread() = default;