diff options
author | Karl Williamson <public@khwilliamson.com> | 2013-01-10 16:42:19 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2013-01-11 11:50:38 -0700 |
commit | 410299687df9bab6276843b8261158e45e14f988 (patch) | |
tree | fb9b2162b4fab39dc126bb25223091dd2d848cd2 /proto.h | |
parent | d71b76f689c577372aa8a0b376960b13c24d0a88 (diff) | |
download | perl-410299687df9bab6276843b8261158e45e14f988.tar.gz |
regcomp.c: Add capability for regclass() to return inversion list
This is currently unused, but will have regclass() return an inversion
list instead of a node.
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6639,7 +6639,7 @@ STATIC regnode* S_regbranch(pTHX_ struct RExC_state_t *pRExC_state, I32 *flagp, #define PERL_ARGS_ASSERT_REGBRANCH \ assert(pRExC_state); assert(flagp) -STATIC regnode* S_regclass(pTHX_ struct RExC_state_t *pRExC_state, I32 *flagp, U32 depth, const bool stop_at_1, bool allow_multi_fold, const bool silence_non_portable) +STATIC regnode* S_regclass(pTHX_ struct RExC_state_t *pRExC_state, I32 *flagp, U32 depth, const bool stop_at_1, bool allow_multi_fold, const bool silence_non_portable, SV** ret_invlist) __attribute__nonnull__(pTHX_1) __attribute__nonnull__(pTHX_2); #define PERL_ARGS_ASSERT_REGCLASS \ |