summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Src/IniFile.cpp
diff options
context:
space:
mode:
authorMaarten ter Huurne <maarten@treewalker.org>2008-08-27 12:33:49 +0000
committerMaarten ter Huurne <maarten@treewalker.org>2008-08-27 12:33:49 +0000
commit105e1c325fd3d58ff2da1a2c50b89ccfe09d139d (patch)
treecf98cbb2f0f0f32dafa0b2a38a535abf8263b06b /Source/Core/Common/Src/IniFile.cpp
parentae7d236fdfc039cc8e8c615fc1f92801b681969b (diff)
Fixed warnings about field initialisation order.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@359 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/Common/Src/IniFile.cpp')
-rw-r--r--Source/Core/Common/Src/IniFile.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/Common/Src/IniFile.cpp b/Source/Core/Common/Src/IniFile.cpp
index fe32a86c7f..e10b65bc20 100644
--- a/Source/Core/Common/Src/IniFile.cpp
+++ b/Source/Core/Common/Src/IniFile.cpp
@@ -37,11 +37,11 @@ IniFile::~IniFile()
Section::Section()
- : name(""), comment(""), lines() {}
+ : lines(), name(""), comment("") {}
Section::Section(const std::string& _name)
- : name(_name), comment(""), lines() {}
+ : lines(), name(_name), comment("") {}
Section::Section(const Section& other)