diff options
author | Father Chrysostomos <sprout@cpan.org> | 2014-11-21 00:05:00 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2014-11-21 00:24:57 -0800 |
commit | e69651e7f17a3e1bb02146eaba10463f0375c84e (patch) | |
tree | 3eeb4f711c7f7f13bb59f4351b02c7e07d65cadc /cv.h | |
parent | 5119ebe1e5c8604dd457794254aa37705a17e5bf (diff) | |
download | perl-e69651e7f17a3e1bb02146eaba10463f0375c84e.tar.gz |
Remove context param from set_padlist
It doesn’t need it.
Diffstat (limited to 'cv.h')
-rw-r--r-- | cv.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -71,7 +71,7 @@ See L<perlguts/Autoloading with XSUBs>. &(((XPVCV*)MUTABLE_PTR(SvANY(sv)))->xcv_padlist_u.xcv_padlist))) /* CvPADLIST_set is not public API, it can be removed one day, once stabilized */ #ifdef DEBUGGING -# define CvPADLIST_set(sv, padlist) Perl_set_padlist(aTHX_ (CV*)sv, padlist) +# define CvPADLIST_set(sv, padlist) Perl_set_padlist((CV*)sv, padlist) #else # define CvPADLIST_set(sv, padlist) (CvPADLIST(sv) = (padlist)) #endif |