diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2012-02-07 22:46:16 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2012-02-07 22:46:16 +0000 |
commit | d08900848307fdaea19d52249bdced94eefdb9bb (patch) | |
tree | 6254bcf52cf162dde37787f4821ca727379c1e7d /tools/libclang/IndexingContext.cpp | |
parent | d7a3e2c5f61cd4893f95b69a424fe4def3aa0f69 (diff) |
[libclang] Do not index implicit C++ member functions. rdar://10769813
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@150007 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/libclang/IndexingContext.cpp')
-rw-r--r-- | tools/libclang/IndexingContext.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/libclang/IndexingContext.cpp b/tools/libclang/IndexingContext.cpp index 32eb326abb..2e69c46849 100644 --- a/tools/libclang/IndexingContext.cpp +++ b/tools/libclang/IndexingContext.cpp @@ -1012,7 +1012,7 @@ CXCursor IndexingContext::getRefCursor(const NamedDecl *D, SourceLocation Loc) { return clang_getNullCursor(); } -bool IndexingContext::shouldIgnoreIfImplicit(const NamedDecl *D) { +bool IndexingContext::shouldIgnoreIfImplicit(const Decl *D) { if (isa<ObjCInterfaceDecl>(D)) return false; if (isa<ObjCCategoryDecl>(D)) |