diff options
| author | Rémi Verschelde | 2017-12-06 21:36:34 +0100 |
|---|---|---|
| committer | Rémi Verschelde | 2017-12-07 08:02:00 +0100 |
| commit | 13c2ff932089db24841bb971b645141218bd8586 (patch) | |
| tree | 1fc056e9e5531b9d039ecfcf19602cdce33222d2 /core/project_settings.h | |
| parent | a8ceb7e3f213216e4fb103a6a8687d007632f788 (diff) | |
| download | godot-13c2ff932089db24841bb971b645141218bd8586.tar.gz godot-13c2ff932089db24841bb971b645141218bd8586.tar.zst godot-13c2ff932089db24841bb971b645141218bd8586.zip | |
Diffstat (limited to 'core/project_settings.h')
| -rw-r--r-- | core/project_settings.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/core/project_settings.h b/core/project_settings.h index 1c4078ceb..d8a1ea1f7 100644 --- a/core/project_settings.h +++ b/core/project_settings.h @@ -58,18 +58,18 @@ protected: Variant initial; bool hide_from_editor; bool overrided; - VariantContainer() - : order(0), - persist(false), - hide_from_editor(false), - overrided(false) { + VariantContainer() : + order(0), + persist(false), + hide_from_editor(false), + overrided(false) { } - VariantContainer(const Variant &p_variant, int p_order, bool p_persist = false) - : order(p_order), - persist(p_persist), - variant(p_variant), - hide_from_editor(false), - overrided(false) { + VariantContainer(const Variant &p_variant, int p_order, bool p_persist = false) : + order(p_order), + persist(p_persist), + variant(p_variant), + hide_from_editor(false), + overrided(false) { } }; |
