diff options
author | Father Chrysostomos <sprout@cpan.org> | 2010-11-20 11:20:07 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2010-11-20 18:15:14 -0800 |
commit | afdbe55d0c4f11409419f813c4360c8ab300a779 (patch) | |
tree | d4fb56dd294696874058ba8d0ff994b987be270c /hv.c | |
parent | 745edda6f1b4ede54e0225b4d1528e96dc0217a0 (diff) | |
download | perl-afdbe55d0c4f11409419f813c4360c8ab300a779.tar.gz |
Eliminate the newname param from mro_package_moved
Nothing is using this any more, as of the previous commit.
Diffstat (limited to 'hv.c')
-rw-r--r-- | hv.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1077,7 +1077,7 @@ S_hv_delete_common(pTHX_ HV *hv, SV *keysv, const char *key, STRLEN klen, if (mro_changes == 1) mro_isa_changed_in(hv); else if (mro_changes == 2) - mro_package_moved(NULL, stash, gv, NULL, 1); + mro_package_moved(NULL, stash, gv, 1); return sv; } @@ -1771,7 +1771,7 @@ S_hfreeentries(pTHX_ HV *hv) if (klen > 1 && key[klen-1]==':' && key[klen-2]==':') { mro_package_moved( NULL, GvHV(HeVAL(oentry)), - (GV *)HeVAL(oentry), NULL, 0 + (GV *)HeVAL(oentry), 0 ); } } |