From 31e2151cf7b6f7c31fe64b3d1ad5b34061be8e8b Mon Sep 17 00:00:00 2001 From: Jesse Vincent Date: Sun, 4 Jun 2017 00:34:59 -0700 Subject: [PATCH] virtual void begin(void) final is redunant and makes the linter unhappy --- src/Kaleidoscope/Escape-OneShot.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Kaleidoscope/Escape-OneShot.h b/src/Kaleidoscope/Escape-OneShot.h index f96d95c2..b42b6ddb 100644 --- a/src/Kaleidoscope/Escape-OneShot.h +++ b/src/Kaleidoscope/Escape-OneShot.h @@ -23,7 +23,7 @@ class EscapeOneShot : public KaleidoscopePlugin { public: EscapeOneShot(void); - virtual void begin(void) final; + void begin(void) final; private: static Key eventHandlerHook(Key mappedKey, byte row, byte col, uint8_t keyState);