[Lldb-commits] [lldb] r259084 - Update lldb for API change in clang r259070.
Manman Ren via lldb-commits
lldb-commits at lists.llvm.org
Thu Jan 28 11:55:50 PST 2016
Author: mren
Date: Thu Jan 28 13:55:50 2016
New Revision: 259084
URL: http://llvm.org/viewvc/llvm-project?rev=259084&view=rev
Log:
Update lldb for API change in clang r259070.
Modified:
lldb/trunk/source/Plugins/ExpressionParser/Clang/ClangASTSource.cpp
Modified: lldb/trunk/source/Plugins/ExpressionParser/Clang/ClangASTSource.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/ExpressionParser/Clang/ClangASTSource.cpp?rev=259084&r1=259083&r2=259084&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/ExpressionParser/Clang/ClangASTSource.cpp (original)
+++ lldb/trunk/source/Plugins/ExpressionParser/Clang/ClangASTSource.cpp Thu Jan 28 13:55:50 2016
@@ -1378,7 +1378,7 @@ FindObjCPropertyAndIvarDeclsWithOrigin (
StringRef name(name_str.c_str());
IdentifierInfo &name_identifier(origin_iface_decl->getASTContext().Idents.get(name));
- DeclFromUser<ObjCPropertyDecl> origin_property_decl(origin_iface_decl->FindPropertyDeclaration(&name_identifier));
+ DeclFromUser<ObjCPropertyDecl> origin_property_decl(origin_iface_decl->FindPropertyDeclaration(&name_identifier, ObjCPropertyDecl::OBJC_PR_query_instance));
bool found = false;
More information about the lldb-commits
mailing list