mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
clang-modernize -loop-convert
and some manual adjustments
This commit is contained in:
@ -325,11 +325,9 @@ CNANDContentManager CNANDContentManager::m_Instance;
|
||||
|
||||
CNANDContentManager::~CNANDContentManager()
|
||||
{
|
||||
CNANDContentMap::iterator itr = m_Map.begin();
|
||||
while (itr != m_Map.end())
|
||||
for (auto& entry : m_Map)
|
||||
{
|
||||
delete itr->second;
|
||||
++itr;
|
||||
delete entry.second;
|
||||
}
|
||||
m_Map.clear();
|
||||
}
|
||||
|
Reference in New Issue
Block a user