diff options
author | Chris Lattner <sabre@nondot.org> | 2009-01-16 08:21:25 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-01-16 08:21:25 +0000 |
commit | 636c5ef6572e899d36cec1b0023fb28ba65189e1 (patch) | |
tree | f70da59da87437d0c086854f0deb6959818cf961 /include/clang/Lex/Preprocessor.h | |
parent | f7cf85b330bedd2877e1371fb0a83e99751ae162 (diff) |
Implement basic support for parsing #pragma comment, a microsoft extension
documented here:
http://msdn.microsoft.com/en-us/library/7f0aews7(VS.80).aspx
This is according to my understanding reading the docs, I don't know if it
really agrees fully with what VC++ allows.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@62317 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 a631a583a9..b85c725490 100644 --- a/include/clang/Lex/Preprocessor.h +++ b/include/clang/Lex/Preprocessor.h @@ -726,6 +726,7 @@ public: void HandlePragmaPoison(Token &PoisonTok); void HandlePragmaSystemHeader(Token &SysHeaderTok); void HandlePragmaDependency(Token &DependencyTok); + void HandlePragmaComment(Token &CommentTok); }; /// PreprocessorFactory - A generic factory interface for lazily creating |