Fixed warnings about field initialisation order.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@359 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Maarten ter Huurne
2008-08-27 12:33:49 +00:00
parent ae7d236fdf
commit 105e1c325f
4 changed files with 7 additions and 8 deletions

View File

@ -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)