Change 34678 by [EMAIL PROTECTED] on 2008/10/31 07:37:44

        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.

Affected files ...

... //depot/perl/ext/re/re.xs#59 edit

Differences ...

==== //depot/perl/ext/re/re.xs#59 (text) ====
Index: perl/ext/re/re.xs
--- perl/ext/re/re.xs#58~32911~ 2008-01-09 02:54:27.000000000 -0800
+++ perl/ext/re/re.xs   2008-10-31 00:37:44.000000000 -0700
@@ -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);
End of Patch.

Reply via email to