mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Cpp11 initializers: last src root changeset (#6022)
* Cpp11 initializers: last src root changeset Finish to migrate all src root folder files to C++11 constructor initializers
This commit is contained in:
parent
12aad731ad
commit
1425c6def1
20 changed files with 127 additions and 223 deletions
|
@ -73,15 +73,10 @@ struct ValueSpec {
|
|||
};
|
||||
|
||||
struct SettingsEntry {
|
||||
SettingsEntry() :
|
||||
group(NULL),
|
||||
is_group(false)
|
||||
{}
|
||||
SettingsEntry() {}
|
||||
|
||||
SettingsEntry(const std::string &value_) :
|
||||
value(value_),
|
||||
group(NULL),
|
||||
is_group(false)
|
||||
value(value_)
|
||||
{}
|
||||
|
||||
SettingsEntry(Settings *group_) :
|
||||
|
@ -89,9 +84,9 @@ struct SettingsEntry {
|
|||
is_group(true)
|
||||
{}
|
||||
|
||||
std::string value;
|
||||
Settings *group;
|
||||
bool is_group;
|
||||
std::string value = "";
|
||||
Settings *group = nullptr;
|
||||
bool is_group = false;
|
||||
};
|
||||
|
||||
typedef std::unordered_map<std::string, SettingsEntry> SettingEntries;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue