re-insert != operator that disappeared during last update
This commit is contained in:
parent
2297578cb4
commit
7b1fbff128
@ -211,6 +211,9 @@ public:
|
||||
bool operator==(const WatcherWithUserData &other) const {
|
||||
return (watcher == other.watcher) && (userData == other.userData);
|
||||
}
|
||||
bool operator!=(const WatcherWithUserData &other) const {
|
||||
return !((watcher == other.watcher) && (userData == other.userData));
|
||||
}
|
||||
};
|
||||
|
||||
private:
|
||||
|
Loading…
Reference in New Issue
Block a user