diff options
author | Anders Carlsson <andersca@mac.com> | 2007-08-22 15:14:15 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2007-08-22 15:14:15 +0000 |
commit | f9bcf01f82dfd2688f81e57bcc6300c9b13c51a6 (patch) | |
tree | 88375a003a20043c1116cb4344c93209aaacab5f /include/clang/Parse/Action.h | |
parent | 697e15f2a028f8997cccb24ecd05099988cfb1a9 (diff) |
Parse @encode expressions.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41273 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Parse/Action.h')
-rw-r--r-- | include/clang/Parse/Action.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/clang/Parse/Action.h b/include/clang/Parse/Action.h index 668bfb6d01..1ddbe85fb4 100644 --- a/include/clang/Parse/Action.h +++ b/include/clang/Parse/Action.h @@ -409,6 +409,13 @@ public: virtual ExprResult ParseObjCStringLiteral(ExprTy *string) { return 0; } + + virtual ExprResult ParseObjCEncodeExpression(SourceLocation EncLoc, + SourceLocation LParenLoc, + TypeTy *Ty, + SourceLocation RParenLoc) { + return 0; + } }; |