diff options
author | David Mitchell <davem@iabyn.com> | 2012-04-21 20:25:33 +0100 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2012-06-13 13:32:52 +0100 |
commit | 76ac488f33062fb6944511be1ac932b9bbb66144 (patch) | |
tree | d1b41ef79fae93a262d1323b1b1c8da71987cce6 /proto.h | |
parent | 7fb31b92fa6bf56dff7d4240b7051b9158f7df43 (diff) | |
download | perl-76ac488f33062fb6944511be1ac932b9bbb66144.tar.gz |
make is_bare_re bool. not int in re_op_compile
This flag pointer only stores truth, so make it a pointer to a bool rather
than to an int.
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3150,7 +3150,7 @@ PERL_CALLCONV SV* Perl_re_intuit_string(pTHX_ REGEXP *const r) #define PERL_ARGS_ASSERT_RE_INTUIT_STRING \ assert(r) -PERL_CALLCONV REGEXP* Perl_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 rx_flags, U32 pm_flags) +PERL_CALLCONV REGEXP* Perl_re_op_compile(pTHX_ SV ** const patternp, int pat_count, OP *expr, const regexp_engine* eng, REGEXP *VOL old_re, bool *is_bare_re, U32 rx_flags, U32 pm_flags) __attribute__nonnull__(pTHX_4); #define PERL_ARGS_ASSERT_RE_OP_COMPILE \ assert(eng) |