[Lldb-commits] [PATCH] D44354: [lldb] Unbreak lldb builds due to r327219
Mandeep Singh Grang via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Sat Mar 10 13:18:51 PST 2018
This revision was not accepted when it landed; it landed in state "Needs Review".
This revision was automatically updated to reflect the committed changes.
Closed by commit rL327224: [lldb] Unbreak lldb builds due to r327219 (authored by mgrang, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D44354?vs=137922&id=137923#toc
Repository:
rL LLVM
https://reviews.llvm.org/D44354
Files:
lldb/trunk/source/Breakpoint/Breakpoint.cpp
Index: lldb/trunk/source/Breakpoint/Breakpoint.cpp
===================================================================
--- lldb/trunk/source/Breakpoint/Breakpoint.cpp
+++ lldb/trunk/source/Breakpoint/Breakpoint.cpp
@@ -792,8 +792,8 @@
// from both maps as we go.
if (old_id_vec.size() == new_id_vec.size()) {
- sort(old_id_vec.begin(), old_id_vec.end());
- sort(new_id_vec.begin(), new_id_vec.end());
+ llvm::sort(old_id_vec.begin(), old_id_vec.end());
+ llvm::sort(new_id_vec.begin(), new_id_vec.end());
size_t num_elements = old_id_vec.size();
for (size_t idx = 0; idx < num_elements; idx++) {
BreakpointLocationSP old_loc_sp =
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D44354.137923.patch
Type: text/x-patch
Size: 739 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20180310/cf366935/attachment.bin>
More information about the lldb-commits
mailing list