diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2011-12-07 05:52:06 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2011-12-07 05:52:06 +0000 |
commit | 2b0b43cf56fc46fc94a734413748878211651a8b (patch) | |
tree | f5ba36c392134be93a37f5854045b0bbd3571645 /clang/tools/libclang/IndexingContext.h | |
parent | 2f0400b780a8e00511f16483a417ece6c54e0b81 (diff) | |
download | bcm5719-llvm-2b0b43cf56fc46fc94a734413748878211651a8b.tar.gz bcm5719-llvm-2b0b43cf56fc46fc94a734413748878211651a8b.zip |
[libclang] Index C++ namespaces.
llvm-svn: 146019
Diffstat (limited to 'clang/tools/libclang/IndexingContext.h')
-rw-r--r-- | clang/tools/libclang/IndexingContext.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clang/tools/libclang/IndexingContext.h b/clang/tools/libclang/IndexingContext.h index 6f33e194fd5..a8a8edb3629 100644 --- a/clang/tools/libclang/IndexingContext.h +++ b/clang/tools/libclang/IndexingContext.h @@ -370,6 +370,8 @@ public: bool handleObjCProperty(const ObjCPropertyDecl *D); + bool handleNamespace(const NamespaceDecl *D); + bool handleClassTemplate(const ClassTemplateDecl *D); bool handleFunctionTemplate(const FunctionTemplateDecl *D); bool handleTypeAliasTemplate(const TypeAliasTemplateDecl *D); |