mirror of
https://github.com/intel/llvm.git
synced 2026-01-14 03:50:17 +08:00
Fix the broken build that happened with my last checkin.
llvm-svn: 137300
This commit is contained in:
@@ -113,9 +113,9 @@ size_t
|
||||
ModuleList::RemoveOrphans ()
|
||||
{
|
||||
Mutex::Locker locker(m_modules_mutex);
|
||||
collection::reverse_iterator pos = m_modules.rbegin();
|
||||
collection::iterator pos = m_modules.begin();
|
||||
size_t remove_count = 0;
|
||||
while (pos != m_modules.rend())
|
||||
while (pos != m_modules.end())
|
||||
{
|
||||
if (pos->unique())
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user