diff options
Diffstat (limited to 'include/clang/Lex/PTHLexer.h')
-rw-r--r-- | include/clang/Lex/PTHLexer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clang/Lex/PTHLexer.h b/include/clang/Lex/PTHLexer.h index d748bc1f7dffc..2352ccea1853e 100644 --- a/include/clang/Lex/PTHLexer.h +++ b/include/clang/Lex/PTHLexer.h @@ -90,11 +90,11 @@ public: /// IndirectLex - An indirect call to 'Lex' that can be invoked via /// the PreprocessorLexer interface. - void IndirectLex(Token &Result) { Lex(Result); } + void IndirectLex(Token &Result) override { Lex(Result); } /// getSourceLocation - Return a source location for the token in /// the current file. - SourceLocation getSourceLocation(); + SourceLocation getSourceLocation() override; /// SkipBlock - Used by Preprocessor to skip the current conditional block. bool SkipBlock(); |