diff options
author | Sadie Powell <sadie@witchery.services> | 2023-12-17 13:59:49 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2023-12-17 13:59:49 +0000 |
commit | 6538641e8703084460df70d04196ac271eff1266 (patch) | |
tree | 2bf8ab8fdd0fb4839d86607826bc09c3366e3870 /include/threadengine.h | |
parent | eb0e5c89b2a1e59091001ffd0e54582c2ff04212 (diff) |
Remove some unnecessary spaces that break editor indentation.
Diffstat (limited to 'include/threadengine.h')
-rw-r--r-- | include/threadengine.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/threadengine.h b/include/threadengine.h index 7d7c2dc70..7e59cc117 100644 --- a/include/threadengine.h +++ b/include/threadengine.h @@ -16,11 +16,11 @@ class CoreExport Thread : public Pipe, public Extensible { - private: +private: /* Set to true to tell the thread to finish and we are waiting for it */ bool exit = false; - public: +public: /* Handle for this thread */ pthread_t handle; @@ -60,11 +60,11 @@ class CoreExport Thread : public Pipe, public Extensible class CoreExport Mutex { - protected: +protected: /* A mutex, used to keep threads in sync */ pthread_mutex_t mutex; - public: +public: /** Constructor */ Mutex(); @@ -90,11 +90,11 @@ class CoreExport Mutex class CoreExport Condition : public Mutex { - private: +private: /* A condition */ pthread_cond_t cond; - public: +public: /** Constructor */ Condition(); |