This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f019531
)
Change 32783 was generating warnings from gcc about an extra semicolon
author
Nicholas Clark
<nick@ccl4.org>
Sun, 30 Dec 2007 20:23:54 +0000
(20:23 +0000)
committer
Nicholas Clark
<nick@ccl4.org>
Sun, 30 Dec 2007 20:23:54 +0000
(20:23 +0000)
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
hv.h
patch
|
blob
|
blame
|
history
diff --git
a/hv.h
b/hv.h
index
b1f2ce2
..
8d4088e
100644
(file)
--- 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; \