forked from OSchip/llvm-project
parent
20f5e974e4
commit
fb278831aa
|
@ -405,8 +405,8 @@ namespace {
|
|||
// Objective-c statements
|
||||
virtual OwningStmtResult ActOnObjCAtCatchStmt(SourceLocation AtLoc,
|
||||
SourceLocation RParen,
|
||||
DeclPtrTy Parm, StmtArg Body,
|
||||
StmtArg CatchList) {
|
||||
DeclPtrTy Parm,
|
||||
StmtArg Body) {
|
||||
Out << __FUNCTION__ << "\n";
|
||||
return StmtEmpty();
|
||||
}
|
||||
|
@ -418,7 +418,8 @@ namespace {
|
|||
}
|
||||
|
||||
virtual OwningStmtResult ActOnObjCAtTryStmt(SourceLocation AtLoc,
|
||||
StmtArg Try, StmtArg Catch,
|
||||
StmtArg Try,
|
||||
MultiStmtArg CatchStmts,
|
||||
StmtArg Finally) {
|
||||
Out << __FUNCTION__ << "\n";
|
||||
return StmtEmpty();
|
||||
|
|
Loading…
Reference in New Issue