define != operator for WatcherWithUserData needed for find on OpenVMS AXP

This commit is contained in:
Jouk
2016-05-09 10:21:13 +02:00
parent 43ba49285b
commit d3e57a1dcf

View File

@@ -207,6 +207,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: