summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2012-04-21 20:25:33 +0100
committerDavid Mitchell <davem@iabyn.com>2012-06-13 13:32:52 +0100
commit76ac488f33062fb6944511be1ac932b9bbb66144 (patch)
treed1b41ef79fae93a262d1323b1b1c8da71987cce6 /proto.h
parent7fb31b92fa6bf56dff7d4240b7051b9158f7df43 (diff)
downloadperl-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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/proto.h b/proto.h
index 84df7b1aaa..10fbaba358 100644
--- a/proto.h
+++ b/proto.h
@@ -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)