diff options
author | mitchell <unknown> | 2018-05-05 21:09:21 -0400 |
---|---|---|
committer | mitchell <unknown> | 2018-05-05 21:09:21 -0400 |
commit | c60d0059738eb49622dfe94e69d371856748ec18 (patch) | |
tree | 05661173868a8404e68720bdacec575292a7a896 /src/ScintillaBase.h | |
parent | 50e62c7c057261b8d1bd10c05216486549a9b604 (diff) | |
download | scintilla-mirror-c60d0059738eb49622dfe94e69d371856748ec18.tar.gz |
Backport: Make some changes recommended by clang-tidy.
Backport of changeset 6687:4cbf987c7590.
Diffstat (limited to 'src/ScintillaBase.h')
-rw-r--r-- | src/ScintillaBase.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ScintillaBase.h b/src/ScintillaBase.h index f2633ba90..202098129 100644 --- a/src/ScintillaBase.h +++ b/src/ScintillaBase.h @@ -55,7 +55,7 @@ protected: // Deleted so ScintillaBase objects can not be copied. explicit ScintillaBase(const ScintillaBase &) = delete; ScintillaBase &operator=(const ScintillaBase &) = delete; - virtual ~ScintillaBase(); + ~ScintillaBase() override; void Initialise() override {} void Finalise() override; |