summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2013-01-10 15:15:21 -0700
committerKarl Williamson <public@khwilliamson.com>2013-01-11 11:50:37 -0700
commit9b98bc7f8e3343ca284cecac6f7fe4e88ccce0db (patch)
tree4adbbaa43dbad99c90ebea06e79ffe54dc022179 /proto.h
parent8316ead628e0766f9c676352d8fa10eddbede091 (diff)
downloadperl-9b98bc7f8e3343ca284cecac6f7fe4e88ccce0db.tar.gz
regcomp.c: Add parameter to regclass()
This parameter silences warnings for non-portable characters. It currently is always FALSE, meaning that warnings are given.
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 9bb1228b4d..37ceea3771 100644
--- a/proto.h
+++ b/proto.h
@@ -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)
+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)
__attribute__nonnull__(pTHX_1)
__attribute__nonnull__(pTHX_2);
#define PERL_ARGS_ASSERT_REGCLASS \