summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Src/IniFile.cpp
diff options
context:
space:
mode:
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)