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 ac7a3a8 commit c6008dbCopy full SHA for c6008db
sv.h
@@ -1436,9 +1436,9 @@ object type. Exposed to perl code via Internals::SvREADONLY().
1436
(svrv_)->sv_u.svu_rv; \
1437
})
1438
# define SvMAGIC(sv) \
1439
- (*({ const SV *const _svmagic = (const SV *)(sv); \
1440
- assert(SvTYPE(_svmagic) >= SVt_PVMG); \
1441
- &(((XPVMG*) MUTABLE_PTR(SvANY(_svmagic)))->xmg_u.xmg_magic); \
+ (*({ const SV *const svmagic_ = (const SV *)(sv); \
+ assert(SvTYPE(svmagic_) >= SVt_PVMG); \
+ &(((XPVMG*) MUTABLE_PTR(SvANY(svmagic_)))->xmg_u.xmg_magic); \
1442
}))
1443
# define SvSTASH(sv) \
1444
(*({ const SV *const _svstash = (const SV *)(sv); \
0 commit comments