diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2012-01-20 01:38:51 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2012-01-20 01:38:51 +0000 |
commit | 908c4dcc5d617972ec57e9e42d708100e923d7a7 (patch) | |
tree | 6f041250bec882ba5b538c0256ac1558550c01a4 /clang/tools/libclang/IndexingContext.cpp | |
parent | 5d343228111b2f3b219a7f871ba19909af3649dd (diff) | |
download | bcm5719-llvm-908c4dcc5d617972ec57e9e42d708100e923d7a7.tar.gz bcm5719-llvm-908c4dcc5d617972ec57e9e42d708100e923d7a7.zip |
[libclang] Fix crash when indexing attributes, rdar://10702250.
llvm-svn: 148524
Diffstat (limited to 'clang/tools/libclang/IndexingContext.cpp')
-rw-r--r-- | clang/tools/libclang/IndexingContext.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/tools/libclang/IndexingContext.cpp b/clang/tools/libclang/IndexingContext.cpp index 1c58d23f54c..3d70144db54 100644 --- a/clang/tools/libclang/IndexingContext.cpp +++ b/clang/tools/libclang/IndexingContext.cpp @@ -49,7 +49,7 @@ IndexingContext::ObjCProtocolListInfo::ObjCProtocolListInfo( IBOutletCollectionInfo::IBOutletCollectionInfo( const IBOutletCollectionInfo &other) - : AttrInfo(CXIdxAttr_IBOutletCollection, other.cursor, other.loc, A) { + : AttrInfo(CXIdxAttr_IBOutletCollection, other.cursor, other.loc, other.A) { IBCollInfo.attrInfo = this; IBCollInfo.classCursor = other.IBCollInfo.classCursor; |