summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChaoren Lin <chaorenl@google.com>2016-01-28 20:25:46 +0000
committerChaoren Lin <chaorenl@google.com>2016-01-28 20:25:46 +0000
commitedf25990a4f4d1b7173b620c6212ddf42e197bd2 (patch)
tree99da6c23fb33aca27cf7c6efb553808d828c7f3d
parentdfef2cf502766c4df13dc949d635df115a085f25 (diff)
downloadbcm5719-llvm-edf25990a4f4d1b7173b620c6212ddf42e197bd2.tar.gz
bcm5719-llvm-edf25990a4f4d1b7173b620c6212ddf42e197bd2.zip
Fix build after rL259070.
llvm-svn: 259086
-rw-r--r--lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.cpp b/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.cpp
index 172d6d03249..c158de003af 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<ObjCPropertyDecl> origin_property_decl(origin_iface_decl->FindPropertyDeclaration(&name_identifier, ObjCPropertyDecl::OBJC_PR_query_instance));
+ DeclFromUser<ObjCPropertyDecl> origin_property_decl(origin_iface_decl->FindPropertyDeclaration(&name_identifier, ObjCPropertyQueryKind::OBJC_PR_query_instance));
bool found = false;
OpenPOWER on IntegriCloud