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/Decoration.cxx | |
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/Decoration.cxx')
-rw-r--r-- | src/Decoration.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Decoration.cxx b/src/Decoration.cxx index 6a3269214..1ca1d9c90 100644 --- a/src/Decoration.cxx +++ b/src/Decoration.cxx @@ -35,7 +35,7 @@ public: explicit Decoration(int indicator_) : indicator(indicator_) { } - ~Decoration() { + ~Decoration() override { } bool Empty() const override { @@ -85,7 +85,7 @@ class DecorationList : public IDecorationList { public: DecorationList(); - ~DecorationList(); + ~DecorationList() override; const std::vector<const IDecoration*> &View() const override { return decorationView; |