Removed initialization from class definition

Former-commit-id: b603f1831da1269e5f77c60bd5eb296e1156fe15
This commit is contained in:
johan 2013-12-08 11:33:55 +01:00
parent c3ba0438df
commit a1749cb6dc

View File

@ -46,9 +46,9 @@ private:
std::vector<ColorRgb> _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();