diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2009-11-25 01:26:41 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2009-11-25 01:26:41 +0000 |
commit | f88f7ab5adaa11d050270ffee6aa871e855f83b8 (patch) | |
tree | 2ca71b50401761b46057ba9b519743a5bf53eac3 /include/clang/Parse/Action.h | |
parent | 3233441b439a3dee9fa187f2c195b5188e71483b (diff) |
Some fancy footwork to move the decision on how
to build casted expression-list AST to Sema.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@89827 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Parse/Action.h')
-rw-r--r-- | include/clang/Parse/Action.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/clang/Parse/Action.h b/include/clang/Parse/Action.h index 4b09cabfaa..c201b78df9 100644 --- a/include/clang/Parse/Action.h +++ b/include/clang/Parse/Action.h @@ -992,9 +992,10 @@ public: return move(Val); // Default impl returns operand. } - virtual OwningExprResult ActOnParenListExpr(SourceLocation L, + virtual OwningExprResult ActOnParenOrParenListExpr(SourceLocation L, SourceLocation R, - MultiExprArg Val) { + MultiExprArg Val, + TypeTy *TypeOfCast=0) { return ExprEmpty(); } |