[Lldb-commits] [PATCH] D16155: possible ambiguous resolution of clang::ArrayType/llvm::ArrayType in ClangAstContext
Ewan Crawford via lldb-commits
lldb-commits at lists.llvm.org
Thu Jan 14 04:22:03 PST 2016
This revision was automatically updated to reflect the committed changes.
Closed by commit rL257759: Fix ambiguous resolution of clang::ArrayType/llvm::ArrayType in ClangAstContext (authored by EwanCrawford).
Changed prior to commit:
http://reviews.llvm.org/D16155?vs=44788&id=44854#toc
Repository:
rL LLVM
http://reviews.llvm.org/D16155
Files:
lldb/trunk/source/Symbol/ClangASTContext.cpp
Index: lldb/trunk/source/Symbol/ClangASTContext.cpp
===================================================================
--- lldb/trunk/source/Symbol/ClangASTContext.cpp
+++ lldb/trunk/source/Symbol/ClangASTContext.cpp
@@ -2105,14 +2105,14 @@
if (element_count == 0)
{
return CompilerType (ast, ast->getIncompleteArrayType (GetQualType(element_type),
- ArrayType::Normal,
+ clang::ArrayType::Normal,
0));
}
else
{
return CompilerType (ast, ast->getConstantArrayType (GetQualType(element_type),
ap_element_count,
- ArrayType::Normal,
+ clang::ArrayType::Normal,
0));
}
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D16155.44854.patch
Type: text/x-patch
Size: 1178 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20160114/219f0eed/attachment.bin>
More information about the lldb-commits
mailing list