summarylogtreecommitdiffstats
path: root/ETL-1.2.1.patch
diff options
context:
space:
mode:
Diffstat (limited to 'ETL-1.2.1.patch')
-rw-r--r--ETL-1.2.1.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/ETL-1.2.1.patch b/ETL-1.2.1.patch
deleted file mode 100644
index bcf70e00880c..000000000000
--- a/ETL-1.2.1.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- a/ETL/_pen.h 2017-09-08 05:51:26.000000000 -0400
-+++ b/ETL/_pen.h 2018-07-27 12:56:43.833337339 -0400
-@@ -136,7 +136,8 @@
- typedef int value_type;
- value_type x,y;
- difference_type(value_type x, value_type y):x(x),y(y) { }
-- value_type &operator[](int i)const { return i?y:x; }
-+ const value_type &operator[](int i) const { return i?y:x; }
-+ value_type &operator[](int i) { return i?y:x; }
- };
-
- protected: