From 5ca5f4bc0ab4ca2fcc518cdaa2f6a695a34003ca Mon Sep 17 00:00:00 2001 From: Steve Naroff Date: Thu, 8 Jan 2009 20:22:04 +0000 Subject: [PATCH] Remove a dead decl. llvm-svn: 61938 --- clang/include/clang/AST/DeclObjC.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/clang/include/clang/AST/DeclObjC.h b/clang/include/clang/AST/DeclObjC.h index 112fcfd9c8d4..8c5ed18f8327 100644 --- a/clang/include/clang/AST/DeclObjC.h +++ b/clang/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: