summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2006-04-10 19:55:49 +0000
committerNicholas Clark <nick@ccl4.org>2006-04-10 19:55:49 +0000
commitb5a2f8d883d38be33345ce4afe970bc14be51e58 (patch)
treed8cb8ce8ca06ba7e9a5bad979109bf31031f76f2 /proto.h
parent35ab56323549cd3c972fa3918e0e9a2875081466 (diff)
downloadperl-b5a2f8d883d38be33345ce4afe970bc14be51e58.tar.gz
All S_dumpuntil()'s regnode pointer arguments can be const.
p4raw-id: //depot/perl@27762
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 736d35ccc4..851d881994 100644
--- a/proto.h
+++ b/proto.h
@@ -3548,7 +3548,7 @@ STATIC char* S_nextchar(pTHX_ struct RExC_state_t *state)
__attribute__nonnull__(pTHX_1);
# ifdef DEBUGGING
-STATIC regnode* S_dumpuntil(pTHX_ const regexp *r, regnode *start, regnode *node, regnode *last, SV* sv, I32 l)
+STATIC const regnode* S_dumpuntil(pTHX_ const regexp *r, const regnode *start, const regnode *node, const regnode *last, SV* sv, I32 l)
__attribute__nonnull__(pTHX_1)
__attribute__nonnull__(pTHX_2)
__attribute__nonnull__(pTHX_3)