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 c4f038a commit 610a939Copy full SHA for 610a939
sv.h
@@ -1652,11 +1652,11 @@ only be used as part of a larger operation
1652
1653
#if defined (DEBUGGING) && defined(PERL_USE_GCC_BRACE_GROUPS)
1654
# define BmUSEFUL(sv) \
1655
- (*({ SV *const _bmuseful = MUTABLE_SV(sv); \
1656
- assert(SvTYPE(_bmuseful) >= SVt_PVIV); \
1657
- assert(SvVALID(_bmuseful)); \
1658
- assert(!SvIOK(_bmuseful)); \
1659
- &(((XPVIV*) SvANY(_bmuseful))->xiv_u.xivu_iv); \
+ (*({ SV *const bmuseful_ = MUTABLE_SV(sv); \
+ assert(SvTYPE(bmuseful_) >= SVt_PVIV); \
+ assert(SvVALID(bmuseful_)); \
+ assert(!SvIOK(bmuseful_)); \
+ &(((XPVIV*) SvANY(bmuseful_))->xiv_u.xivu_iv); \
1660
}))
1661
#else
1662
# define BmUSEFUL(sv) ((XPVIV*) SvANY(sv))->xiv_u.xivu_iv
0 commit comments