summaryrefslogtreecommitdiff
path: root/av.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2007-01-02 16:28:48 +0000
committerNicholas Clark <nick@ccl4.org>2007-01-02 16:28:48 +0000
commita0f41f2518305ae5cc490f6175f9de0f74d9daa7 (patch)
treee24e9b5dd7cdf969669cc03e6fa638c8abada218 /av.h
parent077a3fa2c3fff382cd8a867b1b39765df61a6fc7 (diff)
downloadperl-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 'av.h')
-rw-r--r--av.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/av.h b/av.h
index 3dfd39ea51..566b8e0b4b 100644
--- a/av.h
+++ b/av.h
@@ -38,9 +38,6 @@ struct xpvav {
HV* xmg_stash; /* class package */
};
-#if 0
-typedef struct xpvav xpvav_allocated;
-#else
typedef struct {
SSize_t xav_fill; /* Index of last element present */
SSize_t xav_max; /* max index for which array has space */
@@ -57,7 +54,6 @@ typedef struct {
} xmg_u;
HV* xmg_stash; /* class package */
} xpvav_allocated;
-#endif
/* SV** xav_alloc; */
#define xav_alloc xiv_u.xivu_p1