OpenVMS (Alpha only) uses != operator in std::find ->needs operator defenition

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@76249 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Jouk Jansen
2014-04-01 08:56:05 +00:00
parent 9354ecbbeb
commit 225daa32d7

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: