diff options
Diffstat (limited to 'lib/Sema/SemaDeclObjC.cpp')
-rw-r--r-- | lib/Sema/SemaDeclObjC.cpp | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/lib/Sema/SemaDeclObjC.cpp b/lib/Sema/SemaDeclObjC.cpp index 28a92c7ba2..7bdfd9e014 100644 --- a/lib/Sema/SemaDeclObjC.cpp +++ b/lib/Sema/SemaDeclObjC.cpp @@ -268,8 +268,8 @@ Sema::ActOnForwardProtocolDeclaration(SourceLocation AtProtocolLoc, Protocols.push_back(PDecl); } - return new ObjCForwardProtocolDecl(AtProtocolLoc, - &Protocols[0], Protocols.size()); + return ObjCForwardProtocolDecl::Create(Context, AtProtocolLoc, + &Protocols[0], Protocols.size()); } Sema::DeclTy *Sema::ActOnStartCategoryInterface( @@ -280,8 +280,9 @@ Sema::DeclTy *Sema::ActOnStartCategoryInterface( SourceLocation EndProtoLoc) { ObjCInterfaceDecl *IDecl = getObjCInterfaceDecl(ClassName); - ObjCCategoryDecl *CDecl = new ObjCCategoryDecl(AtInterfaceLoc, NumProtoRefs, - CategoryName); + ObjCCategoryDecl *CDecl = + ObjCCategoryDecl::Create(Context, AtInterfaceLoc, NumProtoRefs, + CategoryName); CDecl->setClassInterface(IDecl); /// Check that class of this category is already completely declared. @@ -605,7 +606,8 @@ Sema::ActOnForwardClassDeclaration(SourceLocation AtClassLoc, Interfaces.push_back(IDecl); } - return new ObjCClassDecl(AtClassLoc, &Interfaces[0], Interfaces.size()); + return ObjCClassDecl::Create(Context, AtClassLoc, + &Interfaces[0], Interfaces.size()); } |