summaryrefslogtreecommitdiff
path: root/cad/gnucap/patches/patch-ab
diff options
context:
space:
mode:
Diffstat (limited to 'cad/gnucap/patches/patch-ab')
-rw-r--r--cad/gnucap/patches/patch-ab22
1 files changed, 22 insertions, 0 deletions
diff --git a/cad/gnucap/patches/patch-ab b/cad/gnucap/patches/patch-ab
new file mode 100644
index 00000000000..8f7600ff8e7
--- /dev/null
+++ b/cad/gnucap/patches/patch-ab
@@ -0,0 +1,22 @@
+$NetBSD: patch-ab,v 1.3 2005/12/20 12:02:15 joerg Exp $
+
+--- modelgen/mg_.h.orig 2005-12-13 15:26:08.000000000 +0000
++++ modelgen/mg_.h
+@@ -118,7 +118,7 @@ class List
+ }
+ T* p = new T(file);
+ {if (!file.stuck(&here)) {
+- _list.push_back(p);
++ this->_list.push_back(p);
+ }else {
+ delete p;
+ file.warn(0, "not valid here");
+@@ -137,7 +137,7 @@ class Collection
+ int here = file.cursor();
+ T* m = new T(file);
+ {if (!file.stuck(&here)) {
+- _list.push_back(m);
++ this->_list.push_back(m);
+ }else{
+ delete m;
+ file.warn(0, "what's this??");