summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2018-10-16 12:12:32 -0600
committerKarl Williamson <khw@cpan.org>2018-10-17 12:45:47 -0600
commitfb1ab119d45424c20269bacd0dada91318c5515f (patch)
tree71db5312b5daebfa73d24cca0bfa10801fbb80e3 /proto.h
parent7016bb98525f967ee9369881f54f25a67de6b18e (diff)
downloadperl-fb1ab119d45424c20269bacd0dada91318c5515f.tar.gz
regcomp.c: Make 'const' 2 parms to re_op_compile
These are unchanged in the function; might as well indicate that.
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 0e6c76a3bc..9ea9e2e036 100644
--- a/proto.h
+++ b/proto.h
@@ -2784,7 +2784,7 @@ PERL_CALLCONV char* Perl_re_intuit_start(pTHX_ REGEXP * const rx, SV* sv, const
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 *old_re, bool *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 *old_re, bool *is_bare_re, const U32 rx_flags, const U32 pm_flags);
#define PERL_ARGS_ASSERT_RE_OP_COMPILE \
assert(eng)
PERL_CALLCONV Malloc_t Perl_realloc(Malloc_t where, MEM_SIZE nbytes)