aboutsummaryrefslogtreecommitdiff
path: root/tools/libclang/IndexingContext.h
diff options
context:
space:
mode:
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>2011-12-07 20:44:15 +0000
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>2011-12-07 20:44:15 +0000
commitb526a871af40b84d9878eded54a181bf4003b376 (patch)
treeb50df2f905bf7eedf76acc915b0ef9769fdacc2c /tools/libclang/IndexingContext.h
parent838d3c23204f52ae27a9f5e9a254238a7ac5d41b (diff)
[libclang] Fix indexing of C++ bases in a C++ class.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@146068 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/libclang/IndexingContext.h')
-rw-r--r--tools/libclang/IndexingContext.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/libclang/IndexingContext.h b/tools/libclang/IndexingContext.h
index a8a8edb362..ff5ca1b819 100644
--- a/tools/libclang/IndexingContext.h
+++ b/tools/libclang/IndexingContext.h
@@ -293,6 +293,9 @@ class IndexingContext {
CXXBasesListInfo(const CXXRecordDecl *D,
IndexingContext &IdxCtx, IndexingContext::StrAdapter &SA);
+
+ private:
+ SourceLocation getBaseLoc(const CXXBaseSpecifier &Base) const;
};
public: