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;
|
||||
}
|
||||
|
||||
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…
Reference in New Issue