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 {
|
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:
|
||||||
|
Reference in New Issue
Block a user