From 225daa32d71124e672d68871ec2198629fecde32 Mon Sep 17 00:00:00 2001 From: Jouk Jansen Date: Tue, 1 Apr 2014 08:56:05 +0000 Subject: [PATCH] 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 --- src/stc/scintilla/src/Document.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/stc/scintilla/src/Document.h b/src/stc/scintilla/src/Document.h index effdd5fe55..d74678375c 100644 --- a/src/stc/scintilla/src/Document.h +++ b/src/stc/scintilla/src/Document.h @@ -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: