Change 32785 by [EMAIL PROTECTED] on 2007/12/30 20:23:54
Change 32783 was generating warnings from gcc about an extra semicolon
in strucutre or union. No doubt some non-sloppy compilers will consider
this an error and barf. We don't like barfing.
Affected files ...
... //depot/perl/hv.h#118 edit
Differences ...
==== //depot/perl/hv.h#118 (text) ====
Index: perl/hv.h
--- perl/hv.h#117~32783~ 2007-12-30 02:30:15.000000000 -0800
+++ perl/hv.h 2007-12-30 12:23:54.000000000 -0800
@@ -68,7 +68,7 @@
#define _XPVHV_ALLOCATED_HEAD \
STRLEN xhv_fill; /* how full xhv_array currently is */ \
- STRLEN xhv_max; /* subscript of last element of xhv_array */
+ STRLEN xhv_max /* subscript of last element of xhv_array */
#define _XPVHV_HEAD \
union _xnvu xnv_u; \
End of Patch.