File tree Expand file tree Collapse file tree 5 files changed +15
-15
lines changed Expand file tree Collapse file tree 5 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 11
11
/* This structure must match the beginning of XPVFM in sv.h */
12
12
13
13
struct xpvcv {
14
- _XPV_HEAD ;
14
+ XPV_HEAD_ ;
15
15
XPVCV_COMMON_ ;
16
16
};
17
17
Original file line number Diff line number Diff line change @@ -4551,7 +4551,7 @@ struct Perl_OpDumpContext;
4551
4551
#define my_lstat () my_lstat_flags(SV_GMAGIC)
4552
4552
4553
4553
/* defined in sv.c, but also used in [ach]v.c */
4554
- #undef _XPV_HEAD
4554
+ #undef XPV_HEAD_
4555
4555
#undef _XPVMG_HEAD
4556
4556
#undef XPVCV_COMMON_
4557
4557
Original file line number Diff line number Diff line change @@ -643,7 +643,7 @@ values.
643
643
/*----------------------------------------------------------------------
644
644
* Fields required for compatibility with SV types
645
645
*/
646
- _XPV_HEAD ;
646
+ XPV_HEAD_ ;
647
647
648
648
/*----------------------------------------------------------------------
649
649
* Operational fields
Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ typedef struct regexp {
139
139
/*----------------------------------------------------------------------
140
140
* Fields required for compatibility with SV types
141
141
*/
142
- _XPV_HEAD ;
142
+ XPV_HEAD_ ;
143
143
144
144
/*----------------------------------------------------------------------
145
145
* Operational fields
Original file line number Diff line number Diff line change @@ -538,7 +538,7 @@ These guys don't need the curly blocks
538
538
#define SVprv_WEAKREF 0x80000000 /* Weak reference */
539
539
/* pad name vars only */
540
540
541
- #define _XPV_HEAD \
541
+ #define XPV_HEAD_ \
542
542
HV* xmg_stash; /* class package */ \
543
543
union xmgu_ xmg_u ; \
544
544
STRLEN xpv_cur ; /* length of svu_pv as a C string */ \
@@ -570,38 +570,38 @@ union xmgu_ {
570
570
};
571
571
572
572
struct xpv {
573
- _XPV_HEAD ;
573
+ XPV_HEAD_ ;
574
574
};
575
575
576
576
struct xpviv {
577
- _XPV_HEAD ;
577
+ XPV_HEAD_ ;
578
578
union xivu_ xiv_u ;
579
579
};
580
580
581
581
#define xiv_iv xiv_u.xivu_iv
582
582
583
583
struct xpvuv {
584
- _XPV_HEAD ;
584
+ XPV_HEAD_ ;
585
585
union xivu_ xuv_u ;
586
586
};
587
587
588
588
#define xuv_uv xuv_u.xivu_uv
589
589
590
590
struct xpvnv {
591
- _XPV_HEAD ;
591
+ XPV_HEAD_ ;
592
592
union xivu_ xiv_u ;
593
593
union xnvu_ xnv_u ;
594
594
};
595
595
596
596
/* This structure must match the beginning of struct xpvhv in hv.h. */
597
597
struct xpvmg {
598
- _XPV_HEAD ;
598
+ XPV_HEAD_ ;
599
599
union xivu_ xiv_u ;
600
600
union xnvu_ xnv_u ;
601
601
};
602
602
603
603
struct xpvlv {
604
- _XPV_HEAD ;
604
+ XPV_HEAD_ ;
605
605
union xivu_ xiv_u ;
606
606
union xnvu_ xnv_u ;
607
607
union {
@@ -619,7 +619,7 @@ struct xpvlv {
619
619
#define xlv_targoff xlv_targoff_u.xlvu_targoff
620
620
621
621
struct xpvinvlist {
622
- _XPV_HEAD ;
622
+ XPV_HEAD_ ;
623
623
IV prev_index ; /* caches result of previous invlist_search() */
624
624
STRLEN iterator ; /* Stores where we are in iterating */
625
625
bool is_offset ; /* The data structure for all inversion lists
@@ -633,7 +633,7 @@ struct xpvinvlist {
633
633
/* This structure works in 2 ways - regular scalar, or GV with GP */
634
634
635
635
struct xpvgv {
636
- _XPV_HEAD ;
636
+ XPV_HEAD_ ;
637
637
union xivu_ xiv_u ;
638
638
union xnvu_ xnv_u ;
639
639
};
@@ -669,13 +669,13 @@ typedef U32 cv_flags_t;
669
669
/* This structure must match XPVCV in cv.h */
670
670
671
671
struct xpvfm {
672
- _XPV_HEAD ;
672
+ XPV_HEAD_ ;
673
673
XPVCV_COMMON_ ;
674
674
};
675
675
676
676
677
677
struct xpvio {
678
- _XPV_HEAD ;
678
+ XPV_HEAD_ ;
679
679
union xivu_ xiv_u ;
680
680
/* ifp and ofp are normally the same, but sockets need separate streams */
681
681
PerlIO * xio_ofp ;
You can’t perform that action at this time.
0 commit comments