From 07e0731da8d13ba13c32142d7e02d2088ae0690b Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Thu, 20 Feb 2020 10:44:55 -0700 Subject: [PATCH] regcomp.c: Silence compiler warning This parameter is unused except under certain debugging compile options Spotted by James Keenan --- regcomp.c | 1 + 1 file changed, 1 insertion(+) diff --git a/regcomp.c b/regcomp.c index 0a78e32..6a06bd4 100644 --- a/regcomp.c +++ b/regcomp.c @@ -16212,6 +16212,7 @@ S_handle_regex_sets(pTHX_ RExC_state_t *pRExC_state, SV** return_invlist, GET_RE_DEBUG_FLAGS_DECL; PERL_ARGS_ASSERT_HANDLE_REGEX_SETS; + PERL_UNUSED_ARG(oregcomp_parse); /* Only for Set_Node_Length */ DEBUG_PARSE("xcls"); -- 1.8.3.1