summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2024-03-14 23:19:32 +0000
committerSadie Powell <sadie@witchery.services>2024-03-14 23:19:32 +0000
commit13a556df891756a195b2f432e4187103ce4043af (patch)
tree8b9d23b4c719e6249fc8d68a2bf84a4ee40c11ce /include
parent4e9d1835232552a1b86d8666e7e7265ce09cbc6a (diff)
Initialize timer members with constructor initialization.
Diffstat (limited to 'include')
-rw-r--r--include/timers.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/timers.h b/include/timers.h
index 6233eb2d8..3615074df 100644
--- a/include/timers.h
+++ b/include/timers.h
@@ -18,7 +18,7 @@ class CoreExport Timer
private:
/** The owner of the timer, if any
*/
- Module *owner;
+ Module *owner = nullptr;
/** The triggering time
*/