diff options
author | Chris Lattner <sabre@nondot.org> | 2008-03-16 01:23:04 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-03-16 01:23:04 +0000 |
commit | f87ca0a7d13e33c0e9e5bf0ac64d1392e3c2c0aa (patch) | |
tree | 78941244d417a869d7163360ab547aa82df49e6e /clang/lib/Sema/SemaDeclObjC.cpp | |
parent | 2a52083efc80a68f1318cb7a4178c9d32bcc333a (diff) | |
download | bcm5719-llvm-f87ca0a7d13e33c0e9e5bf0ac64d1392e3c2c0aa.tar.gz bcm5719-llvm-f87ca0a7d13e33c0e9e5bf0ac64d1392e3c2c0aa.zip |
Give ObjCProtocolDecl a Create method.
llvm-svn: 48410
Diffstat (limited to 'clang/lib/Sema/SemaDeclObjC.cpp')
-rw-r--r-- | clang/lib/Sema/SemaDeclObjC.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/lib/Sema/SemaDeclObjC.cpp b/clang/lib/Sema/SemaDeclObjC.cpp index d5d658d4ff1..af57d09ce62 100644 --- a/clang/lib/Sema/SemaDeclObjC.cpp +++ b/clang/lib/Sema/SemaDeclObjC.cpp @@ -211,10 +211,10 @@ Sema::DeclTy *Sema::ActOnStartProtocolInterface( } } else { - PDecl = new ObjCProtocolDecl(AtProtoInterfaceLoc, NumProtoRefs, - ProtocolName); + PDecl = ObjCProtocolDecl::Create(Context, AtProtoInterfaceLoc, NumProtoRefs, + ProtocolName); ObjCProtocols[ProtocolName] = PDecl; - } + } if (NumProtoRefs) { /// Check then save referenced protocols @@ -260,7 +260,7 @@ Sema::ActOnForwardProtocolDeclaration(SourceLocation AtProtocolLoc, ObjCProtocolDecl *PDecl = ObjCProtocols[P]; if (!PDecl) { // Not already seen? // FIXME: Pass in the location of the identifier! - PDecl = new ObjCProtocolDecl(AtProtocolLoc, 0, P, true); + PDecl = ObjCProtocolDecl::Create(Context, AtProtocolLoc, 0, P, true); ObjCProtocols[P] = PDecl; } |