From e69651e7f17a3e1bb02146eaba10463f0375c84e Mon Sep 17 00:00:00 2001 From: Father Chrysostomos Date: Fri, 21 Nov 2014 00:05:00 -0800 Subject: Remove context param from set_padlist MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It doesn’t need it. --- cv.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cv.h') diff --git a/cv.h b/cv.h index 5e69ef530b..a3cbdb3373 100644 --- a/cv.h +++ b/cv.h @@ -71,7 +71,7 @@ See L. &(((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 -- cgit v1.2.1