diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2012-05-07 22:22:58 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2012-05-07 22:22:58 +0000 |
commit | 98180d49bdbb9a41e9cacf12a3a8be30a60ba707 (patch) | |
tree | 2e6a35366ea652033f5d993dedc6fa80b26a0266 /tools/libclang/IndexTypeSourceInfo.cpp | |
parent | e377d71d81e953939a17e94b9b684f77b5fff83d (diff) |
[libclang] Put the RecursiveASTVisitor in libclang in a cxindex namespace.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@156331 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/libclang/IndexTypeSourceInfo.cpp')
-rw-r--r-- | tools/libclang/IndexTypeSourceInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/libclang/IndexTypeSourceInfo.cpp b/tools/libclang/IndexTypeSourceInfo.cpp index 13b2efdb36..67a06f2498 100644 --- a/tools/libclang/IndexTypeSourceInfo.cpp +++ b/tools/libclang/IndexTypeSourceInfo.cpp @@ -16,7 +16,7 @@ using namespace cxindex; namespace { -class TypeIndexer : public RecursiveASTVisitor<TypeIndexer> { +class TypeIndexer : public cxindex::RecursiveASTVisitor<TypeIndexer> { IndexingContext &IndexCtx; const NamedDecl *Parent; const DeclContext *ParentDC; |