We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fddef4 commit 21feb8bCopy full SHA for 21feb8b
sv.h
@@ -1402,10 +1402,10 @@ object type. Exposed to perl code via Internals::SvREADONLY().
1402
}))
1403
# endif
1404
# 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); \
+ (*({ const SV *const svivx_ = (const SV *)(sv); \
+ assert(PL_valid_types_IVX[SvTYPE(svivx_) & SVt_MASK]); \
+ assert(!isGV_with_GP(svivx_)); \
+ &(((XPVIV*) MUTABLE_PTR(SvANY(svivx_)))->xiv_iv); \
1409
1410
# define SvUVX(sv) \
1411
(*({ const SV *const _svuvx = (const SV *)(sv); \
0 commit comments