From: Nicholas Clark Date: Sun, 30 Dec 2007 20:23:54 +0000 (+0000) Subject: Change 32783 was generating warnings from gcc about an extra semicolon X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b07fa058fb2af826ae6d0f0567d67c2978b62ce0;p=p5sagit%2Fp5-mst-13.2.git Change 32783 was generating warnings from gcc about an extra semicolon in structure or union. No doubt some non-sloppy compilers will consider this an error and barf. We don't like barfing. p4raw-id: //depot/perl@32785 --- diff --git a/hv.h b/hv.h index b1f2ce2..8d4088e 100644 --- a/hv.h +++ b/hv.h @@ -68,7 +68,7 @@ struct xpvhv_aux { #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; \