From a1749cb6dcb1377de2dc1b1745a1bedda013898e Mon Sep 17 00:00:00 2001 From: johan Date: Sun, 8 Dec 2013 11:33:55 +0100 Subject: [PATCH] Removed initialization from class definition Former-commit-id: b603f1831da1269e5f77c60bd5eb296e1156fe15 --- libsrc/bootsequence/KittBootSequence.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libsrc/bootsequence/KittBootSequence.h b/libsrc/bootsequence/KittBootSequence.h index e6aba761..d5ea8c25 100644 --- a/libsrc/bootsequence/KittBootSequence.h +++ b/libsrc/bootsequence/KittBootSequence.h @@ -46,9 +46,9 @@ private: std::vector _ledColors; /// Direction the red-light is currently moving - bool _forwardMove = true; + bool _forwardMove; /// The location of the current red-light - unsigned _currentLight = 0; + unsigned _currentLight; /// Moves the current light to the next (increase or decrease depending on direction) void moveNextLight();