DocData: Fix sorting of arguments and constants
The missing `operator<` definitions caused `Vector::sort()` to fail sorting those alphabetically by name on Windows (not sure why Linux isn't affected, I guess GCC/Clang are cleverer and use the operator from the first struct member).
This commit is contained in:
parent
55377aa559
commit
2ddbaeaf8c
|
@ -42,6 +42,9 @@ public:
|
||||||
String type;
|
String type;
|
||||||
String enumeration;
|
String enumeration;
|
||||||
String default_value;
|
String default_value;
|
||||||
|
bool operator<(const ArgumentDoc &p_arg) const {
|
||||||
|
return name < p_arg.name;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
struct MethodDoc {
|
struct MethodDoc {
|
||||||
|
@ -51,8 +54,8 @@ public:
|
||||||
String qualifiers;
|
String qualifiers;
|
||||||
String description;
|
String description;
|
||||||
Vector<ArgumentDoc> arguments;
|
Vector<ArgumentDoc> arguments;
|
||||||
bool operator<(const MethodDoc &p_md) const {
|
bool operator<(const MethodDoc &p_method) const {
|
||||||
return name < p_md.name;
|
return name < p_method.name;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -61,6 +64,9 @@ public:
|
||||||
String value;
|
String value;
|
||||||
String enumeration;
|
String enumeration;
|
||||||
String description;
|
String description;
|
||||||
|
bool operator<(const ConstantDoc &p_const) const {
|
||||||
|
return name < p_const.name;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
struct PropertyDoc {
|
struct PropertyDoc {
|
||||||
|
@ -70,13 +76,10 @@ public:
|
||||||
String description;
|
String description;
|
||||||
String setter, getter;
|
String setter, getter;
|
||||||
String default_value;
|
String default_value;
|
||||||
bool overridden;
|
bool overridden = false;
|
||||||
bool operator<(const PropertyDoc &p_prop) const {
|
bool operator<(const PropertyDoc &p_prop) const {
|
||||||
return name < p_prop.name;
|
return name < p_prop.name;
|
||||||
}
|
}
|
||||||
PropertyDoc() {
|
|
||||||
overridden = false;
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct ClassDoc {
|
struct ClassDoc {
|
||||||
|
@ -91,6 +94,9 @@ public:
|
||||||
Vector<ConstantDoc> constants;
|
Vector<ConstantDoc> constants;
|
||||||
Vector<PropertyDoc> properties;
|
Vector<PropertyDoc> properties;
|
||||||
Vector<PropertyDoc> theme_properties;
|
Vector<PropertyDoc> theme_properties;
|
||||||
|
bool operator<(const ClassDoc &p_class) const {
|
||||||
|
return name < p_class.name;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
String version;
|
String version;
|
||||||
|
|
Loading…
Reference in New Issue