diff options
author | David Mitchell <davem@iabyn.com> | 2012-06-05 22:50:03 +0100 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2012-06-13 13:32:52 +0100 |
commit | f8ff62a0b7c5ec858ae67e3f79488621e8f03107 (patch) | |
tree | 67591542e03fafe1b410d9745297b339a26c52b5 /ext/re | |
parent | b0812ba3f1b20f0b21a4654f2c33c2cc14e1c0fb (diff) | |
download | perl-f8ff62a0b7c5ec858ae67e3f79488621e8f03107.tar.gz |
make Perl_... and my_re_op_compile sigs match
Diffstat (limited to 'ext/re')
-rw-r--r-- | ext/re/re.xs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/re/re.xs b/ext/re/re.xs index 68a5ebc0c2..859938a366 100644 --- a/ext/re/re.xs +++ b/ext/re/re.xs @@ -14,7 +14,7 @@ START_EXTERN_C extern REGEXP* my_re_compile (pTHX_ SV * const pattern, const U32 pm_flags); extern REGEXP* my_re_op_compile (pTHX_ SV ** const patternp, int pat_count, OP *expr, const regexp_engine* eng, REGEXP *VOL old_re, - int *is_bare_re, U32 orig_rx_flags, U32 pm_flags); + bool *is_bare_re, U32 rx_flags, U32 pm_flags); extern I32 my_regexec (pTHX_ REGEXP * const prog, char* stringarg, char* strend, char* strbeg, I32 minend, SV* screamer, |