diff options
-rw-r--r-- | include/clang/AST/Stmt.h | 4 | ||||
-rw-r--r-- | lib/AST/Stmt.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/clang/AST/Stmt.h b/include/clang/AST/Stmt.h index 406684c8aa..33edadc3a5 100644 --- a/include/clang/AST/Stmt.h +++ b/include/clang/AST/Stmt.h @@ -879,9 +879,9 @@ class ForStmt : public Stmt { SourceLocation LParenLoc, RParenLoc; public: - ForStmt(Stmt *Init, Expr *Cond, VarDecl *CondVar, Expr *Inc, Stmt *Body, + ForStmt(Stmt *Init, Expr *Cond, VarDecl *condVar, Expr *Inc, Stmt *Body, SourceLocation FL, SourceLocation LP, SourceLocation RP) - : Stmt(ForStmtClass), CondVar(CondVar), ForLoc(FL), LParenLoc(LP), + : Stmt(ForStmtClass), CondVar(condVar), ForLoc(FL), LParenLoc(LP), RParenLoc(RP) { SubExprs[INIT] = Init; diff --git a/lib/AST/Stmt.cpp b/lib/AST/Stmt.cpp index ad1db9004f..7c7aeb8d3e 100644 --- a/lib/AST/Stmt.cpp +++ b/lib/AST/Stmt.cpp @@ -519,7 +519,7 @@ Stmt::child_iterator ForStmt::child_begin() { return child_iterator(CondVar, &SubExprs[0]); } Stmt::child_iterator ForStmt::child_end() { - return child_iterator(CondVar, &SubExprs[0]+END_EXPR); + return child_iterator(0, &SubExprs[0]+END_EXPR); } // ObjCForCollectionStmt |