diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2012-09-01 19:08:08 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2012-09-01 19:08:08 +0000 |
commit | 754a5d14d58213beb0502720e66fef8fa86a21cf (patch) | |
tree | 80813fa8ab38d96a80f034c50ef02f6ffe433aa7 /tools/libclang/IndexDecl.cpp | |
parent | d579dd5cc43e657647f38be5dd47c8974cd43108 (diff) |
[libclang] Fix indexing type alias declarations. rdar://11878406
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@163072 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/libclang/IndexDecl.cpp')
-rw-r--r-- | tools/libclang/IndexDecl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/libclang/IndexDecl.cpp b/tools/libclang/IndexDecl.cpp index 7560398395..4c78f5e1b5 100644 --- a/tools/libclang/IndexDecl.cpp +++ b/tools/libclang/IndexDecl.cpp @@ -110,7 +110,7 @@ public: return true; } - bool VisitTypedefDecl(TypedefNameDecl *D) { + bool VisitTypedefNameDecl(TypedefNameDecl *D) { IndexCtx.handleTypedefName(D); IndexCtx.indexTypeSourceInfo(D->getTypeSourceInfo(), D); return true; |