diff options
author | Anders Carlsson <andersca@mac.com> | 2009-05-17 21:22:26 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2009-05-17 21:22:26 +0000 |
commit | 7f537c18c7029e73f0bd555be3782c066e7e2c1e (patch) | |
tree | 2c820b54957e31d7fbf0658dc4b92235c0852255 /include/clang/Parse/Action.h | |
parent | 6b1d283fe879fb11d7ce7a69feecf66e77b0eaf3 (diff) |
Make ActOnWhileStmt take a FullExprArg for the condition expr.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@71990 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Parse/Action.h')
-rw-r--r-- | include/clang/Parse/Action.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clang/Parse/Action.h b/include/clang/Parse/Action.h index cd1945704f..4d188b53fc 100644 --- a/include/clang/Parse/Action.h +++ b/include/clang/Parse/Action.h @@ -506,8 +506,8 @@ public: return StmtEmpty(); } - virtual OwningStmtResult ActOnWhileStmt(SourceLocation WhileLoc, ExprArg Cond, - StmtArg Body) { + virtual OwningStmtResult ActOnWhileStmt(SourceLocation WhileLoc, + FullExprArg Cond, StmtArg Body) { return StmtEmpty(); } virtual OwningStmtResult ActOnDoStmt(SourceLocation DoLoc, StmtArg Body, |