From 362ce3522a1c2a0b22e536a26254b44847d0ffc1 Mon Sep 17 00:00:00 2001 From: Gergely Nagy Date: Wed, 22 Aug 2018 12:44:35 +0200 Subject: [PATCH] Fix a hidden dependency on the old V1 plugin API ShapeShifter derived from `KaleidoscopePlugin`, which was part of the V1 plugin API, and has been recently removed. Use `kaleidoscope::Plugin` instead, which is its replacement. Signed-off-by: Gergely Nagy --- src/Kaleidoscope/ShapeShifter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Kaleidoscope/ShapeShifter.h b/src/Kaleidoscope/ShapeShifter.h index ffe3f4c2..e125e9d2 100644 --- a/src/Kaleidoscope/ShapeShifter.h +++ b/src/Kaleidoscope/ShapeShifter.h @@ -22,7 +22,7 @@ namespace kaleidoscope { -class ShapeShifter : public KaleidoscopePlugin { +class ShapeShifter : public kaleidoscope::Plugin { public: typedef struct { Key original, replacement;