diff options
Diffstat (limited to 'clang/lib/Parse/Parser.cpp')
-rw-r--r-- | clang/lib/Parse/Parser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Parse/Parser.cpp b/clang/lib/Parse/Parser.cpp index 8b96e025b48..e882b0a60b4 100644 --- a/clang/lib/Parse/Parser.cpp +++ b/clang/lib/Parse/Parser.cpp @@ -33,7 +33,7 @@ class ActionCommentHandler : public CommentHandler { public: explicit ActionCommentHandler(Sema &S) : S(S) { } - virtual bool HandleComment(Preprocessor &PP, SourceRange Comment) { + bool HandleComment(Preprocessor &PP, SourceRange Comment) override { S.ActOnComment(Comment); return false; } |