Some implementation of find (i.e. OpenVMS(AXP)) need the != operator

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@78110 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Jouk Jansen
2014-11-10 09:34:32 +00:00
parent 588e0d55b7
commit dba5aea483

View File

@@ -191,6 +191,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: