define != operator for WatcherWithUserData needed for find on OpenVMS AXP
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