diff options
author | Neil <nyamatongwe@gmail.com> | 2017-03-04 10:28:39 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2017-03-04 10:28:39 +1100 |
commit | c8b90797ddb85059627e95db29b59a540ea5c069 (patch) | |
tree | 0d39a1f8c319d02a146c7a7f28d084e3cf22501f /src/ScintillaBase.cxx | |
parent | 10066486e4403da74bc0ac4991e3942cbda9997d (diff) | |
download | scintilla-mirror-c8b90797ddb85059627e95db29b59a540ea5c069.tar.gz |
Use C++11 keyword "override" for methods that override a base class.
Diffstat (limited to 'src/ScintillaBase.cxx')
-rw-r--r-- | src/ScintillaBase.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ScintillaBase.cxx b/src/ScintillaBase.cxx index ac1a46655..678dd1487 100644 --- a/src/ScintillaBase.cxx +++ b/src/ScintillaBase.cxx @@ -535,7 +535,7 @@ public: int lexLanguage; explicit LexState(Document *pdoc_); - virtual ~LexState(); + ~LexState() override; void SetLexer(uptr_t wParam); void SetLexerLanguage(const char *languageName); const char *DescribeWordListSets(); |