Merge pull request #10666 from neikeq/methodinfo-opequal
MethodBind: Adds operator== to compare by id
This commit is contained in:
commit
1a3e524d5b
1 changed files with 1 additions and 0 deletions
|
@ -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 a new issue