[Lldb-commits] [lldb] r257510 - Fix build breakage of r257502.

Stephane Sezer via lldb-commits lldb-commits at lists.llvm.org
Tue Jan 12 12:22:59 PST 2016


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;
 




More information about the lldb-commits mailing list