diff options
author | Karl Williamson <public@khwilliamson.com> | 2011-03-20 10:20:14 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2011-03-20 12:16:12 -0600 |
commit | 9d64099bb0a1ca98620e6124baa4038dd20cf89e (patch) | |
tree | 11f55f82f3097d74b34cf7bb9132c7256c1fbcee /proto.h | |
parent | bb3f3ed29b0f43dce867b7564d9573e5222f0366 (diff) | |
download | perl-9d64099bb0a1ca98620e6124baa4038dd20cf89e.tar.gz |
Add depth parameter to reg_namedseq
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6117,7 +6117,7 @@ STATIC regnode* S_reg(pTHX_ struct RExC_state_t *pRExC_state, I32 paren, I32 *fl #define PERL_ARGS_ASSERT_REG \ assert(pRExC_state); assert(flagp) -STATIC regnode* S_reg_namedseq(pTHX_ struct RExC_state_t *pRExC_state, UV *valuep, I32 *flagp) +STATIC regnode* S_reg_namedseq(pTHX_ struct RExC_state_t *pRExC_state, UV *valuep, I32 *flagp, U32 depth) __attribute__nonnull__(pTHX_1); #define PERL_ARGS_ASSERT_REG_NAMEDSEQ \ assert(pRExC_state) |