diff options
author | Chris Lattner <sabre@nondot.org> | 2010-06-26 17:11:39 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-06-26 17:11:39 +0000 |
commit | abfe094ce71c42656dcb84a3bdc3e79cb3c16fc3 (patch) | |
tree | f2584af627983ca77e82ab857529c3c999ba8aa3 /include/clang/Lex/Preprocessor.h | |
parent | 32f36baa6c8d491c374af622b4e3ac28d597453c (diff) |
Implement support for #pragma message, patch by Michael Spencer!
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@106950 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Lex/Preprocessor.h')
-rw-r--r-- | include/clang/Lex/Preprocessor.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/clang/Lex/Preprocessor.h b/include/clang/Lex/Preprocessor.h index f01b3afc45..f90cb0a687 100644 --- a/include/clang/Lex/Preprocessor.h +++ b/include/clang/Lex/Preprocessor.h @@ -918,6 +918,7 @@ public: void HandlePragmaSystemHeader(Token &SysHeaderTok); void HandlePragmaDependency(Token &DependencyTok); void HandlePragmaComment(Token &CommentTok); + void HandlePragmaMessage(Token &MessageTok); // Return true and store the first token only if any CommentHandler // has inserted some tokens and getCommentRetentionState() is false. bool HandleComment(Token &Token, SourceRange Comment); |