diff options
| author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2009-07-21 00:06:20 +0000 |
|---|---|---|
| committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2009-07-21 00:06:20 +0000 |
| commit | 1559d67b7a68c6ae91431996842fd7777fbd72ac (patch) | |
| tree | 8fd80a64fa5496d2a5f356595c87d53be3430eee /clang/lib/Sema/Sema.h | |
| parent | 43cee935ae6ccef48852ba52f581edb20a386c49 (diff) | |
| download | bcm5719-llvm-1559d67b7a68c6ae91431996842fd7777fbd72ac.tar.gz bcm5719-llvm-1559d67b7a68c6ae91431996842fd7777fbd72ac.zip | |
Remove the ObjCCategoryImpls vector from Sema class.
Use ObjCInterfaceDecl::getCategoryClassMethod() and ObjCInterfaceDecl::getCategoryInstanceMethod() for the same functionality.
llvm-svn: 76510
Diffstat (limited to 'clang/lib/Sema/Sema.h')
| -rw-r--r-- | clang/lib/Sema/Sema.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/clang/lib/Sema/Sema.h b/clang/lib/Sema/Sema.h index 1e75bb2e3de..47938dcd417 100644 --- a/clang/lib/Sema/Sema.h +++ b/clang/lib/Sema/Sema.h @@ -185,10 +185,6 @@ public: /// us to associate a raw vector type with one of the ext_vector type names. /// This is only necessary for issuing pretty diagnostics. llvm::SmallVector<TypedefDecl*, 24> ExtVectorDecls; - - /// ObjCCategoryImpls - Maintain a list of category implementations so - /// we can check for duplicates and find local method declarations. - llvm::SmallVector<ObjCCategoryImplDecl*, 8> ObjCCategoryImpls; /// FieldCollector - Collects CXXFieldDecls during parsing of C++ classes. llvm::OwningPtr<CXXFieldCollector> FieldCollector; |

