From ec391b6bfe8d87f4fb1bbb2a4e6033eaad9f4672 Mon Sep 17 00:00:00 2001 From: mitchell <70453897+667e-11@users.noreply.github.com> Date: Mon, 12 Mar 2018 18:20:24 -0400 Subject: Start using Scintilla's LongTerm3, which now includes Scintillua and Scinterm. Since LongTerm3 requires a C++11 compiler, GCC 4.9+ is required. Since C++11 includes regex capability, drop TRE dependency. --- src/scintilla_backports/6173_c9dcde8a91d3.patch | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 src/scintilla_backports/6173_c9dcde8a91d3.patch (limited to 'src/scintilla_backports/6173_c9dcde8a91d3.patch') diff --git a/src/scintilla_backports/6173_c9dcde8a91d3.patch b/src/scintilla_backports/6173_c9dcde8a91d3.patch deleted file mode 100644 index bd605934..00000000 --- a/src/scintilla_backports/6173_c9dcde8a91d3.patch +++ /dev/null @@ -1,23 +0,0 @@ -# HG changeset patch -# User Neil -# Date 1491552139 -36000 -# Node ID c9dcde8a91d3c5d9f28ba3a7cead581ff880e818 -# Parent 84161436cfbc309da3b30e6fe5bc69c0a9331cfa -Drop "virtual" from methods that do not need to be virtual. - -diff -r 84161436cfbc -r c9dcde8a91d3 src/Decoration.h ---- a/src/Decoration.h Fri Apr 07 17:28:01 2017 +1000 -+++ b/src/Decoration.h Fri Apr 07 18:02:19 2017 +1000 -@@ -66,10 +66,10 @@ - int Start(int indicator, int position); - int End(int indicator, int position); - -- virtual bool ClickNotified() const { -+ bool ClickNotified() const { - return clickNotified; - } -- virtual void SetClickNotified(bool notified) { -+ void SetClickNotified(bool notified) { - clickNotified = notified; - } - }; -- cgit v1.2.3