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 | ea9b81b4c6a3d073157c3f6d4a8329f266cba712 (patch) | |
tree | 70a09f1780897c84e08292958addd2c94b9061e4 /clang/tools/libclang/IndexingContext.h | |
parent | 7ec12c928af2a2b691616bc2d43bf06daf1c4ca8 (diff) | |
download | bcm5719-llvm-ea9b81b4c6a3d073157c3f6d4a8329f266cba712.tar.gz bcm5719-llvm-ea9b81b4c6a3d073157c3f6d4a8329f266cba712.zip |
[libclang] Do not index implicit C++ member functions. rdar://10769813
llvm-svn: 150007
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 bc33005e89d..ef8e24e7c34 100644 --- a/clang/tools/libclang/IndexingContext.h +++ b/clang/tools/libclang/IndexingContext.h @@ -459,7 +459,7 @@ private: CXCursor getRefCursor(const NamedDecl *D, SourceLocation Loc); - static bool shouldIgnoreIfImplicit(const NamedDecl *D); + static bool shouldIgnoreIfImplicit(const Decl *D); }; class ScratchAlloc { |