re-insert != operator that disappeared during last update

This commit is contained in:
Jouk 2016-06-13 16:39:38 +02:00
parent 2297578cb4
commit 7b1fbff128

View File

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