Define also != operator, since find on OpenVMS-AXP needs it
This commit is contained in:
@@ -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:
|
||||
|
Reference in New Issue
Block a user