diff options
author | Father Chrysostomos <sprout@cpan.org> | 2014-11-23 14:25:22 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2014-11-30 11:48:37 -0800 |
commit | 9b7476d7a269a4d9bb24393ae5c8d75efe2fcab4 (patch) | |
tree | 61d730354c865de902a488e7255e91ee90685438 /mg.c | |
parent | 6bb83edb7efd3e3c04f6411141538655410c83a4 (diff) | |
download | perl-9b7476d7a269a4d9bb24393ae5c8d75efe2fcab4.tar.gz |
Make PADNAMELIST a separate type
This is in preparation for making PADNAME a separate type.
Diffstat (limited to 'mg.c')
-rw-r--r-- | mg.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -390,8 +390,6 @@ S_mg_findext_flags(const SV *sv, int type, const MGVTBL *vtbl, U32 flags) if (sv) { MAGIC *mg; - assert(!(SvTYPE(sv) == SVt_PVAV && AvPAD_NAMELIST(sv))); - for (mg = SvMAGIC(sv); mg; mg = mg->mg_moremagic) { if (mg->mg_type == type && (!flags || mg->mg_virtual == vtbl)) { return mg; |