Merge pull request #10666 from neikeq/methodinfo-opequal

MethodBind: Adds operator== to compare by id
This commit is contained in:
Rémi Verschelde 2017-08-27 02:08:38 +02:00 committed by GitHub
commit 1a3e524d5b

View file

@ -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;