File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1414,10 +1414,10 @@ object type. Exposed to perl code via Internals::SvREADONLY().
14141414 &(((XPVUV*) MUTABLE_PTR(SvANY(svuvx_)))->xuv_uv); \
14151415 }))
14161416# define SvNVX (sv ) \
1417- (*({ const SV *const _svnvx = (const SV *)(sv); \
1418- assert(PL_valid_types_NVX[SvTYPE(_svnvx ) & SVt_MASK]); \
1419- assert(!isGV_with_GP(_svnvx )); \
1420- &(((XPVNV*) MUTABLE_PTR(SvANY(_svnvx )))->xnv_u.xnv_nv); \
1417+ (*({ const SV *const svnvx_ = (const SV *)(sv); \
1418+ assert(PL_valid_types_NVX[SvTYPE(svnvx_ ) & SVt_MASK]); \
1419+ assert(!isGV_with_GP(svnvx_ )); \
1420+ &(((XPVNV*) MUTABLE_PTR(SvANY(svnvx_ )))->xnv_u.xnv_nv); \
14211421 }))
14221422# define SvRV (sv ) \
14231423 (*({ SV *const svrv_ = MUTABLE_SV(sv); \
You can’t perform that action at this time.
0 commit comments