summaryrefslogtreecommitdiff
path: root/src/insert_completer.hh
diff options
context:
space:
mode:
authorMaxime Coste <mawww@kakoune.org>2017-05-22 10:31:56 +0100
committerMaxime Coste <mawww@kakoune.org>2017-05-22 10:31:56 +0100
commitbc11e52960e025c4ae6bcde796facca1ff1a7cdc (patch)
treea9f2e6197719f34b54c2501e91a84f5661d567df /src/insert_completer.hh
parentbdcfe308341edc47df628c0ff753f2cd39479273 (diff)
Remove virtual destructor from OptionManagerWatcher
We should never destruct anything through an OptionManagerWatcher pointer, so having all those destructor virtual makes no sense.
Diffstat (limited to 'src/insert_completer.hh')
-rw-r--r--src/insert_completer.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/insert_completer.hh b/src/insert_completer.hh
index b0bd13ef..22ba643a 100644
--- a/src/insert_completer.hh
+++ b/src/insert_completer.hh
@@ -87,7 +87,7 @@ public:
InsertCompleter(Context& context);
InsertCompleter(const InsertCompleter&) = delete;
InsertCompleter& operator=(const InsertCompleter&) = delete;
- ~InsertCompleter() override;
+ ~InsertCompleter();
void select(int offset, Vector<Key>& keystrokes);
void update();