From ea3ec5b19ae48f067179318d336ad97b37f424d2 Mon Sep 17 00:00:00 2001 From: Gergely Nagy Date: Mon, 5 Jun 2017 13:14:37 +0200 Subject: [PATCH] Make the linter happy Signed-off-by: Gergely Nagy --- src/Kaleidoscope-LEDEffect-Breathe.cpp | 3 +-- src/Kaleidoscope-LEDEffect-Breathe.h | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/Kaleidoscope-LEDEffect-Breathe.cpp b/src/Kaleidoscope-LEDEffect-Breathe.cpp index feba2ca9..5c2397f9 100644 --- a/src/Kaleidoscope-LEDEffect-Breathe.cpp +++ b/src/Kaleidoscope-LEDEffect-Breathe.cpp @@ -3,8 +3,7 @@ LEDBreatheEffect_::LEDBreatheEffect_(void) { } -void -LEDBreatheEffect_::update(void) { +void LEDBreatheEffect_::update(void) { cRGB color = breath_compute(); LEDControl.set_all_leds_to(color); } diff --git a/src/Kaleidoscope-LEDEffect-Breathe.h b/src/Kaleidoscope-LEDEffect-Breathe.h index 12af4f1f..c69e3168 100644 --- a/src/Kaleidoscope-LEDEffect-Breathe.h +++ b/src/Kaleidoscope-LEDEffect-Breathe.h @@ -7,7 +7,7 @@ class LEDBreatheEffect_ : public LEDMode { public: LEDBreatheEffect_(void); - virtual void update(void) final; + void update(void) final; }; extern LEDBreatheEffect_ LEDBreatheEffect;