From 81644190721b5ef97956e32cfd19800dcefb2a72 Mon Sep 17 00:00:00 2001 From: Jouk Date: Mon, 27 Feb 2017 08:18:54 +0100 Subject: [PATCH] OpenVMS (AXP) needs a != operator in the find function --- 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 c0a0bb8084..3811f2567a 100644 --- a/src/stc/scintilla/src/Document.h +++ b/src/stc/scintilla/src/Document.h @@ -211,6 +211,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: