mirror of
https://github.com/godotengine/godot.git
synced 2024-11-24 05:04:10 +00:00
Merge pull request #10666 from neikeq/methodinfo-opequal
MethodBind: Adds operator== to compare by id
This commit is contained in:
commit
1a3e524d5b
@ -185,6 +185,7 @@ struct MethodInfo {
|
||||
uint32_t flags;
|
||||
int id;
|
||||
|
||||
inline bool operator==(const MethodInfo &p_method) const { return id == p_method.id; }
|
||||
inline bool operator<(const MethodInfo &p_method) const { return id == p_method.id ? (name < p_method.name) : (id < p_method.id); }
|
||||
|
||||
operator Dictionary() const;
|
||||
|
Loading…
Reference in New Issue
Block a user