MethodBind: Adds operator== to compare by id
This commit is contained in:
parent
53c0010932
commit
b50a937fe6
1 changed files with 1 additions and 0 deletions
|
@ -185,6 +185,7 @@ struct MethodInfo {
|
||||||
uint32_t flags;
|
uint32_t flags;
|
||||||
int id;
|
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); }
|
inline bool operator<(const MethodInfo &p_method) const { return id == p_method.id ? (name < p_method.name) : (id < p_method.id); }
|
||||||
|
|
||||||
operator Dictionary() const;
|
operator Dictionary() const;
|
||||||
|
|
Loading…
Reference in a new issue