diff options
Diffstat (limited to 'lldb')
-rw-r--r-- | lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.cpp b/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.cpp index e21c64bee4d..443f97ed0ba 100644 --- a/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.cpp +++ b/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.cpp @@ -349,7 +349,7 @@ DYLDRendezvous::RemoveSOEntriesFromRemote(LoadedModuleInfoList &module_list) // 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; |