diff options
| author | Jordan Woyak <jordan.woyak@gmail.com> | 2012-02-24 19:20:17 -0600 |
|---|---|---|
| committer | Jordan Woyak <jordan.woyak@gmail.com> | 2012-02-24 19:20:17 -0600 |
| commit | f15aeb26b37d88c451887709ead523e5aeb49390 (patch) | |
| tree | c19b1e02e33df652dd1e61261f293bec20d384eb /Source/Core/Common/Src/IniFile.cpp | |
| parent | b251880d8b3887e6d4119559c5efa1fd39a075b2 (diff) | |
Use an auto typed variable in IniFile.cpp
Diffstat (limited to 'Source/Core/Common/Src/IniFile.cpp')
| -rw-r--r-- | Source/Core/Common/Src/IniFile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/Src/IniFile.cpp b/Source/Core/Common/Src/IniFile.cpp index c81c060f1d..f51e8850d3 100644 --- a/Source/Core/Common/Src/IniFile.cpp +++ b/Source/Core/Common/Src/IniFile.cpp @@ -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; |
