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 4f33c73 commit af7463fCopy full SHA for af7463f
sv.h
@@ -1408,10 +1408,10 @@ object type. Exposed to perl code via Internals::SvREADONLY().
1408
&(((XPVIV*) MUTABLE_PTR(SvANY(svivx_)))->xiv_iv); \
1409
}))
1410
# 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); \
+ (*({ const SV *const svuvx_ = (const SV *)(sv); \
+ assert(PL_valid_types_IVX[SvTYPE(svuvx_) & SVt_MASK]); \
+ assert(!isGV_with_GP(svuvx_)); \
+ &(((XPVUV*) MUTABLE_PTR(SvANY(svuvx_)))->xuv_uv); \
1415
1416
# define SvNVX(sv) \
1417
(*({ const SV *const _svnvx = (const SV *)(sv); \
0 commit comments