summaryrefslogtreecommitdiff
path: root/hv.c
diff options
context:
space:
mode:
authorEric Herman <eric@freesa.org>2020-07-10 09:07:42 +0200
committerYves Orton <demerphq@gmail.com>2020-07-10 11:57:51 +0200
commite4543a2055aeeb5ef42eb7a84fae20b71643c972 (patch)
treef99c8714ee0be4848f65deee1b58e5688472f7bf /hv.c
parent3555a05cbfc80f94a4fe8ae3789f03db69701ca4 (diff)
downloadperl-e4543a2055aeeb5ef42eb7a84fae20b71643c972.tar.gz
hv.c: Remove obsolete/confusing constant
The HV_FILL_THRESHOLD is no longer used and is misleading. See also: commit 8bf4c4010cc474d4000c2a8c78f6890fa5f1e577 Date: Mon Jun 20 22:51:38 2016 +0200 Change scalar(%hash) to be the same as 0+keys(%hash)
Diffstat (limited to 'hv.c')
-rw-r--r--hv.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/hv.c b/hv.c
index eccae6294c..7bf15dde33 100644
--- a/hv.c
+++ b/hv.c
@@ -39,7 +39,6 @@ holds the key and hash value.
* you MUST change the logic in hv_ksplit()
*/
#define DO_HSPLIT(xhv) ( ((xhv)->xhv_keys + ((xhv)->xhv_keys >> 1)) > (xhv)->xhv_max )
-#define HV_FILL_THRESHOLD 31
static const char S_strtab_error[]
= "Cannot modify shared string table in hv_%s";