Skip to content

Commit 21feb8b

Browse files
committed
sv.h Convert _svivx to legal name
1 parent 3fddef4 commit 21feb8b

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
@@ -1402,10 +1402,10 @@ object type. Exposed to perl code via Internals::SvREADONLY().
14021402
}))
14031403
# endif
14041404
# define SvIVX(sv) \
1405-
(*({ const SV *const _svivx = (const SV *)(sv); \
1406-
assert(PL_valid_types_IVX[SvTYPE(_svivx) & SVt_MASK]); \
1407-
assert(!isGV_with_GP(_svivx)); \
1408-
&(((XPVIV*) MUTABLE_PTR(SvANY(_svivx)))->xiv_iv); \
1405+
(*({ const SV *const svivx_ = (const SV *)(sv); \
1406+
assert(PL_valid_types_IVX[SvTYPE(svivx_) & SVt_MASK]); \
1407+
assert(!isGV_with_GP(svivx_)); \
1408+
&(((XPVIV*) MUTABLE_PTR(SvANY(svivx_)))->xiv_iv); \
14091409
}))
14101410
# define SvUVX(sv) \
14111411
(*({ const SV *const _svuvx = (const SV *)(sv); \

0 commit comments

Comments
 (0)