OpenVMS (AXP) needs a != operator in the find function

This commit is contained in:
Jouk
2017-02-27 08:18:54 +01:00
parent 52130e43ab
commit 8164419072

View File

@@ -211,6 +211,9 @@ public:
bool operator==(const WatcherWithUserData &other) const { bool operator==(const WatcherWithUserData &other) const {
return (watcher == other.watcher) && (userData == other.userData); return (watcher == other.watcher) && (userData == other.userData);
} }
bool operator!=(const WatcherWithUserData &other) const {
return !((watcher == other.watcher) && (userData == other.userData));
}
}; };
private: private: