Skip to content

Commit eab042f

Browse files
committed
Convert _XPVCV_COMMON to legal name
1 parent 10d0ff9 commit eab042f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

cv.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
struct xpvcv {
1414
_XPV_HEAD;
15-
_XPVCV_COMMON;
15+
XPVCV_COMMON_;
1616
};
1717

1818
/*

perl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4553,7 +4553,7 @@ struct Perl_OpDumpContext;
45534553
/* defined in sv.c, but also used in [ach]v.c */
45544554
#undef _XPV_HEAD
45554555
#undef _XPVMG_HEAD
4556-
#undef _XPVCV_COMMON
4556+
#undef XPVCV_COMMON_
45574557

45584558
#include "parser.h"
45594559

sv.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -640,7 +640,7 @@ struct xpvgv {
640640

641641
typedef U32 cv_flags_t;
642642

643-
#define _XPVCV_COMMON \
643+
#define XPVCV_COMMON_ \
644644
HV * xcv_stash; \
645645
union { \
646646
OP * xcv_start; \
@@ -670,7 +670,7 @@ typedef U32 cv_flags_t;
670670

671671
struct xpvfm {
672672
_XPV_HEAD;
673-
_XPVCV_COMMON;
673+
XPVCV_COMMON_;
674674
};
675675

676676

0 commit comments

Comments
 (0)