<div dir="ltr">Thanks Jim!</div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Tue, Feb 5, 2019 at 5:27 PM Jim Ingham via lldb-commits <<a href="mailto:lldb-commits@lists.llvm.org">lldb-commits@lists.llvm.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex">Author: jingham<br>
Date: Tue Feb 5 17:27:45 2019<br>
New Revision: 353257<br>
<br>
URL: <a href="http://llvm.org/viewvc/llvm-project?rev=353257&view=rev" rel="noreferrer" target="_blank">http://llvm.org/viewvc/llvm-project?rev=353257&view=rev</a><br>
Log:<br>
Little more cleanup on <a href="https://reviews.llvm.org/D57552" rel="noreferrer" target="_blank">https://reviews.llvm.org/D57552</a><br>
Thanks Jonas... One more early continue and using<br>
a range where we had an iterator.<br>
<br>
NFC<br>
<br>
Modified:<br>
  lldb/trunk/source/Target/PathMappingList.cpp<br>
<br>
Modified: lldb/trunk/source/Target/PathMappingList.cpp<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Target/PathMappingList.cpp?rev=353257&r1=353256&r2=353257&view=diff" rel="noreferrer" target="_blank">http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Target/PathMappingList.cpp?rev=353257&r1=353256&r2=353257&view=diff</a><br>
==============================================================================<br>
--- lldb/trunk/source/Target/PathMappingList.cpp (original)<br>
+++ lldb/trunk/source/Target/PathMappingList.cpp Tue Feb 5 17:27:45 2019<br>
@@ -211,33 +211,32 @@ bool PathMappingList::FindFile(const Fil<br>
<br>
  bool orig_is_relative = orig_spec.IsRelative();<br>
<br>
-Â const_iterator pos, end = m_pairs.end();<br>
-Â for (pos = m_pairs.begin(); pos != end; ++pos) {<br>
+Â for (auto entry : m_pairs) {<br>
   llvm::StringRef orig_ref(orig_path);<br>
-Â Â llvm::StringRef prefix_ref = pos->first.GetStringRef();<br>
-Â Â if (orig_ref.size() >= prefix_ref.size()) {<br>
-Â Â Â // We consider a relative prefix or one of just "." to<br>
-Â Â Â // mean "only apply to relative paths".<br>
-Â Â Â bool prefix_is_relative = false;<br>
-Â Â Â <br>
-Â Â Â if (prefix_ref == ".") {<br>
-Â Â Â Â prefix_is_relative = true;<br>
-Â Â Â Â // Remove the "." since it will have been removed from the<br>
-Â Â Â Â // FileSpec paths already.<br>
-Â Â Â Â prefix_ref = prefix_ref.drop_front();<br>
-Â Â Â } else {<br>
-Â Â Â Â FileSpec prefix_spec(prefix_ref, FileSpec::Style::native);<br>
-Â Â Â Â prefix_is_relative = prefix_spec.IsRelative();<br>
-Â Â Â }<br>
-Â Â Â if (prefix_is_relative != orig_is_relative)<br>
-Â Â Â Â continue;<br>
+Â Â llvm::StringRef prefix_ref = entry.first.GetStringRef();<br>
+Â Â if (orig_ref.size() < prefix_ref.size())<br>
+Â Â Â continue;<br>
+Â Â // We consider a relative prefix or one of just "." to<br>
+Â Â // mean "only apply to relative paths".<br>
+Â Â bool prefix_is_relative = false;<br>
+Â Â <br>
+Â Â if (prefix_ref == ".") {<br>
+Â Â Â prefix_is_relative = true;<br>
+Â Â Â // Remove the "." since it will have been removed from the<br>
+Â Â Â // FileSpec paths already.<br>
+Â Â Â prefix_ref = prefix_ref.drop_front();<br>
+Â Â } else {<br>
+Â Â Â FileSpec prefix_spec(prefix_ref, FileSpec::Style::native);<br>
+Â Â Â prefix_is_relative = prefix_spec.IsRelative();<br>
+Â Â }<br>
+Â Â if (prefix_is_relative != orig_is_relative)<br>
+Â Â Â continue;<br>
<br>
-Â Â Â if (orig_ref.consume_front(prefix_ref)) {<br>
-Â Â Â Â new_spec.SetFile(pos->second.GetCString(), FileSpec::Style::native);<br>
-Â Â Â Â new_spec.AppendPathComponent(orig_ref);<br>
-Â Â Â Â if (FileSystem::Instance().Exists(new_spec))<br>
-Â Â Â Â Â return true;<br>
-Â Â Â }<br>
+Â Â if (orig_ref.consume_front(prefix_ref)) {<br>
+Â Â Â new_spec.SetFile(entry.second.GetCString(), FileSpec::Style::native);<br>
+Â Â Â new_spec.AppendPathComponent(orig_ref);<br>
+Â Â Â if (FileSystem::Instance().Exists(new_spec))<br>
+Â Â Â Â return true;<br>
   }<br>
  }<br>
<br>
<br>
<br>
_______________________________________________<br>
lldb-commits mailing list<br>
<a href="mailto:lldb-commits@lists.llvm.org" target="_blank">lldb-commits@lists.llvm.org</a><br>
<a href="https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits" rel="noreferrer" target="_blank">https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits</a><br>
</blockquote></div>