diff options
author | Nicholas Clark <nick@ccl4.org> | 2007-12-30 20:23:54 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-12-30 20:23:54 +0000 |
commit | b07fa058fb2af826ae6d0f0567d67c2978b62ce0 (patch) | |
tree | 3cfb2becd43347439a9bd5a24cc6f783bd97033c /hv.h | |
parent | f019531057e624642eeb6be122ff985859ed0d0a (diff) | |
download | perl-b07fa058fb2af826ae6d0f0567d67c2978b62ce0.tar.gz |
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
Diffstat (limited to 'hv.h')
-rw-r--r-- | hv.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; \ |