diff options
author | Douglas Gregor <dgregor@apple.com> | 2011-12-15 20:29:51 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2011-12-15 20:29:51 +0000 |
commit | dc9166c8e1120dc0df1859ba6e3d457a458fd20f (patch) | |
tree | eb14bbba9db83cabdb68f9855daa4109c4c1940a /clang/tools/libclang/IndexingContext.h | |
parent | 918f976e66e8311ab1053b83521511ddee039783 (diff) | |
download | bcm5719-llvm-dc9166c8e1120dc0df1859ba6e3d457a458fd20f.tar.gz bcm5719-llvm-dc9166c8e1120dc0df1859ba6e3d457a458fd20f.zip |
Keep track of all declarations of an Objective-C class (both forward
declarations and definitions) as ObjCInterfaceDecls within the same
redeclaration chain. This new representation matches what we do for
C/C++ variables/functions/classes/templates/etc., and makes it
possible to answer the query "where are all of the declarations of
this class?"
llvm-svn: 146679
Diffstat (limited to 'clang/tools/libclang/IndexingContext.h')
-rw-r--r-- | clang/tools/libclang/IndexingContext.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/tools/libclang/IndexingContext.h b/clang/tools/libclang/IndexingContext.h index f5498e5292f..206e322337a 100644 --- a/clang/tools/libclang/IndexingContext.h +++ b/clang/tools/libclang/IndexingContext.h @@ -128,7 +128,7 @@ struct ObjCInterfaceDeclInfo : public ObjCContainerDeclInfo { ObjCInterfaceDeclInfo(const ObjCInterfaceDecl *D) : ObjCContainerDeclInfo(Info_ObjCInterface, /*isForwardRef=*/false, - /*isRedeclaration=*/D->isInitiallyForwardDecl(), + /*isRedeclaration=*/D->getPreviousDeclaration() != 0, /*isImplementation=*/false) { } static bool classof(const DeclInfo *D) { |