summaryrefslogtreecommitdiff
path: root/sv.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 /sv.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 'sv.h')
-rw-r--r--sv.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/sv.h b/sv.h
index 0bafb9914d..ec4e518a66 100644
--- a/sv.h
+++ b/sv.h
@@ -403,14 +403,10 @@ struct xpv {
STRLEN xpv_len; /* allocated size */
};
-#if 0
-typedef struct xpv xpv_allocated;
-#else
typedef struct {
STRLEN xpv_cur; /* length of svu_pv as a C string */
STRLEN xpv_len; /* allocated size */
} xpv_allocated;
-#endif
struct xpviv {
union {
@@ -437,9 +433,6 @@ struct xpviv {
} xiv_u;
};
-#if 0
-typedef struct xpviv xpviv_allocated;
-#else
typedef struct {
STRLEN xpv_cur; /* length of svu_pv as a C string */
STRLEN xpv_len; /* allocated size */
@@ -451,7 +444,6 @@ typedef struct {
HEK * xivu_namehek;
} xiv_u;
} xpviv_allocated;
-#endif
#define xiv_iv xiv_u.xivu_iv