Skip to content

Commit af7463f

Browse files
committed
sv.h Convert _svuvx to legal name
1 parent 4f33c73 commit af7463f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

sv.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1408,10 +1408,10 @@ object type. Exposed to perl code via Internals::SvREADONLY().
14081408
&(((XPVIV*) MUTABLE_PTR(SvANY(svivx_)))->xiv_iv); \
14091409
}))
14101410
# define SvUVX(sv) \
1411-
(*({ const SV *const _svuvx = (const SV *)(sv); \
1412-
assert(PL_valid_types_IVX[SvTYPE(_svuvx) & SVt_MASK]); \
1413-
assert(!isGV_with_GP(_svuvx)); \
1414-
&(((XPVUV*) MUTABLE_PTR(SvANY(_svuvx)))->xuv_uv); \
1411+
(*({ const SV *const svuvx_ = (const SV *)(sv); \
1412+
assert(PL_valid_types_IVX[SvTYPE(svuvx_) & SVt_MASK]); \
1413+
assert(!isGV_with_GP(svuvx_)); \
1414+
&(((XPVUV*) MUTABLE_PTR(SvANY(svuvx_)))->xuv_uv); \
14151415
}))
14161416
# define SvNVX(sv) \
14171417
(*({ const SV *const _svnvx = (const SV *)(sv); \

0 commit comments

Comments
 (0)