From: Nicholas Clark Date: Fri, 31 Oct 2008 07:37:44 +0000 (+0000) Subject: Change 34672 should have removed a const from re.xs. I thought I'd X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=88e52f1cd82cd6da272e85a8b52d3a27cf1db31e;p=p5sagit%2Fp5-mst-13.2.git Change 34672 should have removed a const from re.xs. I thought I'd checked for warnings here - not sure whether it was me or gcc that didn't notice anythign wrong. g++ certainly did. p4raw-id: //depot/perl@34678 --- diff --git a/ext/re/re.xs b/ext/re/re.xs index 484de25..8bc305e 100644 --- a/ext/re/re.xs +++ b/ext/re/re.xs @@ -11,7 +11,7 @@ START_EXTERN_C -extern REGEXP* my_re_compile (pTHX_ const SV * const pattern, const U32 pm_flags); +extern REGEXP* my_re_compile (pTHX_ SV * const pattern, const U32 pm_flags); extern I32 my_regexec (pTHX_ REGEXP * const prog, char* stringarg, char* strend, char* strbeg, I32 minend, SV* screamer, void* data, U32 flags);