From 07d919069de2541c3524e39f1d4a903dd7601e30 Mon Sep 17 00:00:00 2001 From: Gergely Nagy Date: Mon, 5 Jun 2017 13:16:15 +0200 Subject: [PATCH] Make the linter happy Signed-off-by: Gergely Nagy --- src/Kaleidoscope-LEDEffect-SolidColor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Kaleidoscope-LEDEffect-SolidColor.h b/src/Kaleidoscope-LEDEffect-SolidColor.h index 1c341de9..88b0706c 100644 --- a/src/Kaleidoscope-LEDEffect-SolidColor.h +++ b/src/Kaleidoscope-LEDEffect-SolidColor.h @@ -6,7 +6,7 @@ class LEDSolidColor : public LEDMode { public: LEDSolidColor(uint8_t r, uint8_t g, uint8_t b); - virtual void init(void) final; + void init(void) final; private: uint8_t r, g, b;