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) {
}
void
LEDChaseEffect_::update(void) {
void LEDChaseEffect_::update(void) {
if (current_chase_counter++ < chase_threshold) {
return;
}

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

Loading…
Cancel
Save