mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-10 21:44:28 +00:00
Use an auto typed variable in IniFile.cpp
This commit is contained in:
parent
b251880d8b
commit
f15aeb26b3
@ -459,7 +459,7 @@ bool IniFile::Save(const char* filename)
|
|||||||
return false;
|
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;
|
const Section& section = *iter;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user