diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-04-10 19:55:49 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-04-10 19:55:49 +0000 |
commit | b5a2f8d883d38be33345ce4afe970bc14be51e58 (patch) | |
tree | d8cb8ce8ca06ba7e9a5bad979109bf31031f76f2 /proto.h | |
parent | 35ab56323549cd3c972fa3918e0e9a2875081466 (diff) | |
download | perl-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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |