Style: Apply new clang-format 5.0 style to all files
This commit is contained in:
@ -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) {
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user