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 /lexlib/LexerSimple.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 'lexlib/LexerSimple.h')
-rw-r--r-- | lexlib/LexerSimple.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lexlib/LexerSimple.h b/lexlib/LexerSimple.h index 0edeabe8f..87882eaeb 100644 --- a/lexlib/LexerSimple.h +++ b/lexlib/LexerSimple.h @@ -16,9 +16,9 @@ class LexerSimple : public LexerBase { std::string wordLists; public: explicit LexerSimple(const LexerModule *module_); - const char * SCI_METHOD DescribeWordListSets(); - void SCI_METHOD Lex(Sci_PositionU startPos, Sci_Position lengthDoc, int initStyle, IDocument *pAccess); - void SCI_METHOD Fold(Sci_PositionU startPos, Sci_Position lengthDoc, int initStyle, IDocument *pAccess); + const char * SCI_METHOD DescribeWordListSets() override; + void SCI_METHOD Lex(Sci_PositionU startPos, Sci_Position lengthDoc, int initStyle, IDocument *pAccess) override; + void SCI_METHOD Fold(Sci_PositionU startPos, Sci_Position lengthDoc, int initStyle, IDocument *pAccess) override; }; } |