<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div class="">Alright, I'll bite and ask...</div><div class=""><br class=""></div><div class="">What is so special about the Android bot? Every so often, I'll see it reject a piece of syntax that other compilers gleefully handle</div><br class=""><div><blockquote type="cite" class=""><div class="">On Oct 5, 2016, at 10:58 AM, Zachary Turner via lldb-commits <<a href="mailto:lldb-commits@lists.llvm.org" class="">lldb-commits@lists.llvm.org</a>> wrote:</div><br class="Apple-interchange-newline"><div class=""><div class="">Author: zturner<br class="">Date: Wed Oct  5 12:58:46 2016<br class="">New Revision: 283351<br class=""><br class="">URL: <a href="http://llvm.org/viewvc/llvm-project?rev=283351&view=rev" class="">http://llvm.org/viewvc/llvm-project?rev=283351&view=rev</a><br class="">Log:<br class="">Try to fix Android build.<br class=""><br class="">Seems it doesn't like the implicit conversion from<br class="">StringRef[] to ArrayRef<StringRef>.<br class=""><br class="">Modified:<br class="">    lldb/trunk/source/Breakpoint/BreakpointID.cpp<br class=""><br class="">Modified: lldb/trunk/source/Breakpoint/BreakpointID.cpp<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Breakpoint/BreakpointID.cpp?rev=283351&r1=283350&r2=283351&view=diff" class="">http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Breakpoint/BreakpointID.cpp?rev=283351&r1=283350&r2=283351&view=diff</a><br class="">==============================================================================<br class="">--- lldb/trunk/source/Breakpoint/BreakpointID.cpp (original)<br class="">+++ lldb/trunk/source/Breakpoint/BreakpointID.cpp Wed Oct  5 12:58:46 2016<br class="">@@ -48,7 +48,7 @@ bool BreakpointID::IsValidIDExpression(l<br class=""> }<br class=""><br class=""> llvm::ArrayRef<llvm::StringRef> BreakpointID::GetRangeSpecifiers() {<br class="">-  return g_range_specifiers;<br class="">+  return llvm::makeArrayRef(g_range_specifiers);<br class=""> }<br class=""><br class=""> void BreakpointID::GetDescription(Stream *s, lldb::DescriptionLevel level) {<br class=""><br class=""><br class="">_______________________________________________<br class="">lldb-commits mailing list<br class=""><a href="mailto:lldb-commits@lists.llvm.org" class="">lldb-commits@lists.llvm.org</a><br class="">http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits<br class=""></div></div></blockquote></div><br class=""><div class="">
<div class="" style="color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;"><br class="Apple-interchange-newline">Thanks,</div><div class="" style="color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;"><i class="">- Enrico</i><br class="">📩 egranata@<font color="#ff2600" class=""></font>.com ☎️ 27683</div>
</div>
<br class=""></body></html>