You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Use OrderedHashMap for enum_values
This commit is contained in:
committed by
Nathan Franke
parent
ed395c6b99
commit
b5b75cad43
@@ -133,7 +133,7 @@ public:
|
||||
ClassNode *class_type = nullptr;
|
||||
|
||||
MethodInfo method_info; // For callable/signals.
|
||||
Map<StringName, int> enum_values; // For enums.
|
||||
OrderedHashMap<StringName, int> enum_values; // For enums.
|
||||
|
||||
_FORCE_INLINE_ bool is_set() const { return kind != UNRESOLVED; }
|
||||
_FORCE_INLINE_ bool has_no_type() const { return type_source == UNDETECTED; }
|
||||
|
||||
Reference in New Issue
Block a user