File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -549,7 +549,7 @@ These guys don't need the curly blocks
549549
550550#define xpv_len xpv_len_u.xpvlenu_len
551551
552- union _xnvu {
552+ union xnvu_ {
553553 NV xnv_nv ; /* numeric value, if any */
554554 HV * xgv_stash ;
555555 line_t xnv_lines ; /* used internally by S_scan_subst() */
@@ -590,20 +590,20 @@ struct xpvuv {
590590struct xpvnv {
591591 _XPV_HEAD ;
592592 union xivu_ xiv_u ;
593- union _xnvu xnv_u ;
593+ union xnvu_ xnv_u ;
594594};
595595
596596/* This structure must match the beginning of struct xpvhv in hv.h. */
597597struct xpvmg {
598598 _XPV_HEAD ;
599599 union xivu_ xiv_u ;
600- union _xnvu xnv_u ;
600+ union xnvu_ xnv_u ;
601601};
602602
603603struct xpvlv {
604604 _XPV_HEAD ;
605605 union xivu_ xiv_u ;
606- union _xnvu xnv_u ;
606+ union xnvu_ xnv_u ;
607607 union {
608608 STRLEN xlvu_targoff ;
609609 SSize_t xlvu_stargoff ;
@@ -635,7 +635,7 @@ struct xpvinvlist {
635635struct xpvgv {
636636 _XPV_HEAD ;
637637 union xivu_ xiv_u ;
638- union _xnvu xnv_u ;
638+ union xnvu_ xnv_u ;
639639};
640640
641641typedef U32 cv_flags_t ;
You can’t perform that action at this time.
0 commit comments