summaryrefslogtreecommitdiff
path: root/include/timers.h
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2023-12-17 13:59:49 +0000
committerSadie Powell <sadie@witchery.services>2023-12-17 13:59:49 +0000
commit6538641e8703084460df70d04196ac271eff1266 (patch)
tree2bf8ab8fdd0fb4839d86607826bc09c3366e3870 /include/timers.h
parenteb0e5c89b2a1e59091001ffd0e54582c2ff04212 (diff)
Remove some unnecessary spaces that break editor indentation.
Diffstat (limited to 'include/timers.h')
-rw-r--r--include/timers.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/timers.h b/include/timers.h
index d3a5b9532..46f82c60a 100644
--- a/include/timers.h
+++ b/include/timers.h
@@ -15,7 +15,7 @@
class CoreExport Timer
{
- private:
+private:
/** The owner of the timer, if any
*/
Module *owner;
@@ -36,7 +36,7 @@ class CoreExport Timer
*/
bool repeat;
- public:
+public:
/** Constructor, initializes the triggering time
* @param time_from_now The number of seconds from now to trigger the timer
* @param now The time now
@@ -106,7 +106,7 @@ class CoreExport TimerManager
/** A list of timers
*/
static std::multimap<time_t, Timer *> Timers;
- public:
+public:
/** Add a timer to the list
* @param t A Timer derived class to add
*/