diff options
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; + } }; |