]> git.tdb.fi Git - libs/core.git/blobdiff - source/time/timer.h
Use braced initializer lists in place of constructors when possible
[libs/core.git] / source / time / timer.h
index 8bd4d074a70ea569b19074b32e303323143fae81..04d0be95ba8fe0aa1117acf06f06bc3afc3c594d 100644 (file)
@@ -43,14 +43,13 @@ private:
        {
                Slot *slot;
 
-               SlotProxy(Slot *);
                bool operator<(const SlotProxy &) const;
        };
 
        std::vector<SlotProxy> slots;
        Semaphore sem;
        Mutex mutex;
-       bool blocking;
+       bool blocking = false;
 
 public:
        Timer();