diff options
author | Nicholas Clark <nick@ccl4.org> | 2007-01-02 16:28:48 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-01-02 16:28:48 +0000 |
commit | a0f41f2518305ae5cc490f6175f9de0f74d9daa7 (patch) | |
tree | e24e9b5dd7cdf969669cc03e6fa638c8abada218 /hv.h | |
parent | 077a3fa2c3fff382cd8a867b1b39765df61a6fc7 (diff) | |
download | perl-a0f41f2518305ae5cc490f6175f9de0f74d9daa7.tar.gz |
Remove the vestigal "#if 0"s from header files that defined same-sized
*allocated structs, as these are not going to be needed again.
p4raw-id: //depot/perl@29664
Diffstat (limited to 'hv.h')
-rw-r--r-- | hv.h | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -80,9 +80,6 @@ struct xpvhv { #define xhv_keys xiv_u.xivu_iv -#if 0 -typedef struct xpvhv xpvhv_allocated; -#else typedef struct { STRLEN xhv_fill; /* how full xhv_array currently is */ STRLEN xhv_max; /* subscript of last element of xhv_array */ @@ -99,7 +96,6 @@ typedef struct { } xmg_u; HV* xmg_stash; /* class package */ } xpvhv_allocated; -#endif /* hash a key */ /* FYI: This is the "One-at-a-Time" algorithm by Bob Jenkins |