Make the linter happy

Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
pull/365/head
Gergely Nagy 8 years ago
parent 0c645e957b
commit 2c569de478

@ -3,8 +3,7 @@
LEDChaseEffect_::LEDChaseEffect_(void) { LEDChaseEffect_::LEDChaseEffect_(void) {
} }
void void LEDChaseEffect_::update(void) {
LEDChaseEffect_::update(void) {
if (current_chase_counter++ < chase_threshold) { if (current_chase_counter++ < chase_threshold) {
return; return;
} }

@ -7,7 +7,7 @@ class LEDChaseEffect_ : public LEDMode {
public: public:
LEDChaseEffect_(void); LEDChaseEffect_(void);
virtual void update(void) final; void update(void) final;
private: private:
uint8_t pos = 0; uint8_t pos = 0;

Loading…
Cancel
Save