aboutsummaryrefslogtreecommitdiff
path: root/lang/afnix/files/patch-src_std_lib_QuarkTable.cpp
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2004-10-29 09:06:05 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2004-10-29 09:06:05 +0000
commit3add449a170be706377b66bee46af25633bc945c (patch)
tree7415df14a37624ff0b24fd40bde079927a88c28a /lang/afnix/files/patch-src_std_lib_QuarkTable.cpp
parent975af646f278430e563b72219a2c3055b211eb1a (diff)
Notes
Diffstat (limited to 'lang/afnix/files/patch-src_std_lib_QuarkTable.cpp')
-rw-r--r--lang/afnix/files/patch-src_std_lib_QuarkTable.cpp32
1 files changed, 0 insertions, 32 deletions
diff --git a/lang/afnix/files/patch-src_std_lib_QuarkTable.cpp b/lang/afnix/files/patch-src_std_lib_QuarkTable.cpp
deleted file mode 100644
index f97031cf3266..000000000000
--- a/lang/afnix/files/patch-src_std_lib_QuarkTable.cpp
+++ /dev/null
@@ -1,32 +0,0 @@
-
-$FreeBSD$
-
---- src/std/lib/QuarkTable.cpp.orig Sun Aug 22 21:08:41 2004
-+++ src/std/lib/QuarkTable.cpp Sun Aug 22 21:09:12 2004
-@@ -86,7 +86,7 @@
- d_size = c_prime (0);
- d_thrs = (d_size * 7) / 10;
- d_count = 0;
-- p_table = new (s_quanode*)[d_size];
-+ p_table = new s_quanode*[d_size];
- for (long i = 0; i < d_size; i++) p_table[i] = nilp;
- }
-
-@@ -97,7 +97,7 @@
- d_size = c_prime (size);
- d_thrs = (size * 7) / 10;
- d_count = 0;
-- p_table = new (s_quanode*)[d_size];
-+ p_table = new s_quanode*[d_size];
- for (long i = 0; i < d_size; i++) p_table[i] = nilp;
- }
-
-@@ -251,7 +251,7 @@
- if (size < d_size) return;
-
- // initialize the new table
-- s_quanode** table = new (s_quanode*)[size];
-+ s_quanode** table = new s_quanode*[size];
- for (long i = 0; i < size; i++) table[i] = nilp;
-
- // rebuild the table