Author: sas
Date: Tue Jan 12 14:22:58 2016
New Revision: 257510
URL: http://llvm.org/viewvc/llvm-project?rev=257510&view=rev
Log:
Fix build breakage of r257502.
Modified:
lldb/trunk/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.cpp
Modified: lldb/trunk/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.cpp
URL:
http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.cpp?rev=257510&r1=257509&r2=257510&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.cpp
(original)
+++ lldb/trunk/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.cpp Tue
Jan 12 14:22:58 2016
@@ -349,7 +349,7 @@ DYLDRendezvous::RemoveSOEntriesFromRemot
// Only add shared libraries and not the executable.
if (!SOEntryIsMainExecutable(entry))
{
- iterator pos = std::find(m_soentries.begin(), m_soentries.end(),
entry);
+ auto pos = std::find(m_soentries.begin(), m_soentries.end(),
entry);
if (pos == m_soentries.end())
return false;
_______________________________________________
lldb-commits mailing list
[email protected]
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits