Define also != operator, since find on OpenVMS-AXP needs it

This commit is contained in:
Jouk
2015-07-16 07:47:43 +02:00
parent 79794391e9
commit 4b704d4193

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: