diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-05-22 22:03:19 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-05-22 22:03:19 +0000 |
commit | 102d3b8a62934b6c124acd38fad140f94f743df1 (patch) | |
tree | ff247747c009493c6143eaf7cc86c1c4ea151ba1 /hv.h | |
parent | 4b09a709cacc8926b531523da1d1511f3a87dcb2 (diff) | |
download | perl-102d3b8a62934b6c124acd38fad140f94f743df1.tar.gz |
Re-order IVX slot in SV bodies
p4raw-id: //depot/perl@24542
Diffstat (limited to 'hv.h')
-rw-r--r-- | hv.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -42,9 +42,9 @@ struct xpvhv_aux { /* hash structure: */ /* This structure must match the beginning of struct xpvmg in sv.h. */ struct xpvhv { + IV for_rent; STRLEN xhv_fill; /* how full xhv_array currently is */ STRLEN xhv_max; /* subscript of last element of xhv_array */ - IV for_rent; union { NV xnvu_nv; /* numeric value, if any */ struct { |