From: Florian Ragwitz Date: Fri, 5 Dec 2008 06:20:45 +0000 (+0000) Subject: Make the c get_code_info static. X-Git-Tag: 0.71_02~7 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=ee82a43e0f06d4ee0f497ac55ded9506474f9081;p=gitmo%2FClass-MOP.git Make the c get_code_info static. --- diff --git a/MOP.xs b/MOP.xs index 81a307c..1598d94 100644 --- a/MOP.xs +++ b/MOP.xs @@ -80,7 +80,7 @@ mop_call0(pTHX_ SV* const self, SV* const method) { return ret; } -int +static int get_code_info (SV *coderef, char **pkg, char **name) { if (!SvOK(coderef) || !SvROK(coderef) || SvTYPE(SvRV(coderef)) != SVt_PVCV) {