Convert _XPVCV_COMMON to legal name

This commit is contained in:
Karl Williamson 2025-08-14 17:21:05 -06:00
parent 10d0ff9b21
commit eab042fc55
3 changed files with 4 additions and 4 deletions

2
cv.h
View File

@ -12,7 +12,7 @@
struct xpvcv {
_XPV_HEAD;
_XPVCV_COMMON;
XPVCV_COMMON_;
};
/*

2
perl.h
View File

@ -4553,7 +4553,7 @@ struct Perl_OpDumpContext;
/* defined in sv.c, but also used in [ach]v.c */
#undef _XPV_HEAD
#undef _XPVMG_HEAD
#undef _XPVCV_COMMON
#undef XPVCV_COMMON_
#include "parser.h"

4
sv.h
View File

@ -640,7 +640,7 @@ struct xpvgv {
typedef U32 cv_flags_t;
#define _XPVCV_COMMON \
#define XPVCV_COMMON_ \
HV * xcv_stash; \
union { \
OP * xcv_start; \
@ -670,7 +670,7 @@ typedef U32 cv_flags_t;
struct xpvfm {
_XPV_HEAD;
_XPVCV_COMMON;
XPVCV_COMMON_;
};