mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
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:
@ -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)
|
||||
|
Reference in New Issue
Block a user