diff options
author | Nicholas Clark <nick@ccl4.org> | 2010-01-24 15:39:53 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2010-05-21 18:56:25 +0100 |
commit | 359164a0b0ca9d7142b89ef0b09c1d01437e4471 (patch) | |
tree | 632c5b349e633c46ba58180008ccbdd1028c7e32 /hv.h | |
parent | 4d0fbddde6c5dcb972786d09de0cab6e93056b88 (diff) | |
download | perl-359164a0b0ca9d7142b89ef0b09c1d01437e4471.tar.gz |
Eliminate xhv_fill from struct xpvhv.
Diffstat (limited to 'hv.h')
-rw-r--r-- | hv.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -85,9 +85,8 @@ struct xpvhv_aux { struct xpvhv { HV* xmg_stash; /* class package */ union _xmgu xmg_u; - STRLEN xhv_fill; /* how full xhv_array currently is */ + STRLEN xhv_keys; /* total keys, including placeholders */ STRLEN xhv_max; /* subscript of last element of xhv_array */ - STRLEN xhv_keys; /* total keys, including placeholders */ }; /* hash a key */ |