mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +00:00
Use an auto typed variable in IniFile.cpp
This commit is contained in:
parent
b251880d8b
commit
f15aeb26b3
1 changed files with 1 additions and 1 deletions
|
@ -459,7 +459,7 @@ bool IniFile::Save(const char* filename)
|
|||
return false;
|
||||
}
|
||||
|
||||
for (std::vector<Section>::const_iterator iter = sections.begin(); iter != sections.end(); ++iter)
|
||||
for (auto iter = sections.begin(); iter != sections.end(); ++iter)
|
||||
{
|
||||
const Section& section = *iter;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue