From edf25990a4f4d1b7173b620c6212ddf42e197bd2 Mon Sep 17 00:00:00 2001 From: Chaoren Lin Date: Thu, 28 Jan 2016 20:25:46 +0000 Subject: [PATCH] Fix build after rL259070. llvm-svn: 259086 --- lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.cpp b/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.cpp index 172d6d032493..c158de003af7 100644 --- a/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.cpp +++ b/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.cpp @@ -1378,7 +1378,7 @@ FindObjCPropertyAndIvarDeclsWithOrigin (unsigned int current_id, StringRef name(name_str.c_str()); IdentifierInfo &name_identifier(origin_iface_decl->getASTContext().Idents.get(name)); - DeclFromUser origin_property_decl(origin_iface_decl->FindPropertyDeclaration(&name_identifier, ObjCPropertyDecl::OBJC_PR_query_instance)); + DeclFromUser origin_property_decl(origin_iface_decl->FindPropertyDeclaration(&name_identifier, ObjCPropertyQueryKind::OBJC_PR_query_instance)); bool found = false;