aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Parse/Action.h
diff options
context:
space:
mode:
authorAnders Carlsson <andersca@mac.com>2009-05-17 21:22:26 +0000
committerAnders Carlsson <andersca@mac.com>2009-05-17 21:22:26 +0000
commit7f537c18c7029e73f0bd555be3782c066e7e2c1e (patch)
tree2c820b54957e31d7fbf0658dc4b92235c0852255 /include/clang/Parse/Action.h
parent6b1d283fe879fb11d7ce7a69feecf66e77b0eaf3 (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.h4
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,