aboutsummaryrefslogtreecommitdiff
path: root/include/clang/AST/StmtObjC.h
diff options
context:
space:
mode:
authorCraig Topper <craig.topper@gmail.com>2013-08-20 07:07:29 +0000
committerCraig Topper <craig.topper@gmail.com>2013-08-20 07:07:29 +0000
commited218d05aa3d429208b0eb2204707c75b87d2fee (patch)
tree70a03d0ea18cb76017aeb2772dc3e9739987a367 /include/clang/AST/StmtObjC.h
parentdab7845798d673cabeef792451354aeb394cdd54 (diff)
downloadclang-ed218d05aa3d429208b0eb2204707c75b87d2fee.tar.gz
Revert r188756 because some other changes snuck in with it.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@188757 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/AST/StmtObjC.h')
-rw-r--r--include/clang/AST/StmtObjC.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/include/clang/AST/StmtObjC.h b/include/clang/AST/StmtObjC.h
index bfb4a9b0bb..e97c1a5a31 100644
--- a/include/clang/AST/StmtObjC.h
+++ b/include/clang/AST/StmtObjC.h
@@ -181,12 +181,13 @@ private:
HasFinally(HasFinally) { }
public:
- static ObjCAtTryStmt *Create(const ASTContext &Context,
- SourceLocation atTryLoc, Stmt *atTryStmt,
+ static ObjCAtTryStmt *Create(ASTContext &Context, SourceLocation atTryLoc,
+ Stmt *atTryStmt,
Stmt **CatchStmts, unsigned NumCatchStmts,
Stmt *atFinallyStmt);
- static ObjCAtTryStmt *CreateEmpty(const ASTContext &Context,
- unsigned NumCatchStmts, bool HasFinally);
+ static ObjCAtTryStmt *CreateEmpty(ASTContext &Context,
+ unsigned NumCatchStmts,
+ bool HasFinally);
/// \brief Retrieve the location of the @ in the \@try.
SourceLocation getAtTryLoc() const { return AtTryLoc; }