diff options
author | Neil Hodgson <nyamatongwe@gmail.com> | 2018-04-14 09:18:35 +1000 |
---|---|---|
committer | Neil Hodgson <nyamatongwe@gmail.com> | 2018-04-14 09:18:35 +1000 |
commit | cc0af579fe23e74cce1fdc41ab53895cb18e396a (patch) | |
tree | 14fa25832551eb73002b67475a8b2da7532fc2a9 /src/Style.h | |
parent | 0f6f1b05894d29f03bc2b57e75fe4c8a37f9ac21 (diff) | |
download | scintilla-mirror-cc0af579fe23e74cce1fdc41ab53895cb18e396a.tar.gz |
Make some changes recommended by clang-tidy.
Diffstat (limited to 'src/Style.h')
-rw-r--r-- | src/Style.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Style.h b/src/Style.h index f2d70039f..e119bc65e 100644 --- a/src/Style.h +++ b/src/Style.h @@ -36,7 +36,7 @@ public: // FontAlias objects can not be assigned except for initialization FontAlias &operator=(const FontAlias &) = delete; FontAlias(const FontAlias &); - virtual ~FontAlias(); + ~FontAlias() override; void MakeAlias(Font &fontOrigin); void ClearFont(); }; |