diff options
author | Ted Kremenek <kremenek@apple.com> | 2010-03-11 00:36:10 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2010-03-11 00:36:10 +0000 |
commit | 568eb6c87896db19dfb27b394669e05b8cbb27b3 (patch) | |
tree | 00e61780f31b08391b540110ed0a60ce12e2296a /lib/AST/DeclObjC.cpp | |
parent | 9dc82d2193971ed57dc657dbd21249a2c57da376 (diff) |
Remove unused 'IVars' field from ObjCInterfaceDecl. That functionality
has migrated to DeclContext.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@98213 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/DeclObjC.cpp')
-rw-r--r-- | lib/AST/DeclObjC.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/AST/DeclObjC.cpp b/lib/AST/DeclObjC.cpp index 67b71a0c44..c94a551ae2 100644 --- a/lib/AST/DeclObjC.cpp +++ b/lib/AST/DeclObjC.cpp @@ -441,7 +441,6 @@ void ObjCInterfaceDecl::Destroy(ASTContext &C) { for (ivar_iterator I = ivar_begin(), E = ivar_end(); I != E; ++I) if (*I) (*I)->Destroy(C); - IVars.Destroy(C); // FIXME: CategoryList? // FIXME: Because there is no clear ownership |