From: Steve Naroff Date: Thu, 8 Jan 2009 20:22:04 +0000 (+0000) Subject: Remove a dead decl. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6804461f7f154b38130e421b16daf7f2890feb49;p=clang Remove a dead decl. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@61938 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/AST/DeclObjC.h b/include/clang/AST/DeclObjC.h index 112fcfd9c8..8c5ed18f83 100644 --- a/include/clang/AST/DeclObjC.h +++ b/include/clang/AST/DeclObjC.h @@ -412,11 +412,6 @@ public: // Marks the end of the container. SourceLocation getAtEndLoc() const { return AtEndLoc; } void setAtEndLoc(SourceLocation L) { AtEndLoc = L; } - - // This method synthesizes the getter/setter method for the property. - // FIXME: Shouldn't this be part of Sema?. - void getPropertyMethods(ASTContext &Context, ObjCPropertyDecl* Property, - ObjCMethodDecl *& Getter, ObjCMethodDecl *&Setter); }; /// ObjCInterfaceDecl - Represents an ObjC class declaration. For example: