summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2011-03-08 23:13:59 -0700
committerKarl Williamson <public@khwilliamson.com>2011-03-08 23:22:20 -0700
commitaa19b56b2f07e9eabf57540f00d312d8093e9d28 (patch)
tree58fef6cd338f1eb2800e0411928b25a7100c429d /proto.h
parent2f88b8574d3a767b1b37edf9927413bbc8ffd0a4 (diff)
downloadperl-aa19b56b2f07e9eabf57540f00d312d8093e9d28.tar.gz
regcomp.c: Rmv unused parameter
This silences a compiler warning
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/proto.h b/proto.h
index c6b2d7882d..644665afa6 100644
--- a/proto.h
+++ b/proto.h
@@ -6005,12 +6005,11 @@ STATIC int S_cl_is_anything(const struct regnode_charclass_class *cl)
#define PERL_ARGS_ASSERT_CL_IS_ANYTHING \
assert(cl)
-STATIC void S_cl_or(const struct RExC_state_t *pRExC_state, struct regnode_charclass_class *cl, const struct regnode_charclass_class *or_with)
+STATIC void S_cl_or(struct regnode_charclass_class *cl, const struct regnode_charclass_class *or_with)
__attribute__nonnull__(1)
- __attribute__nonnull__(2)
- __attribute__nonnull__(3);
+ __attribute__nonnull__(2);
#define PERL_ARGS_ASSERT_CL_OR \
- assert(pRExC_state); assert(cl); assert(or_with)
+ assert(cl); assert(or_with)
PERL_STATIC_INLINE UV* S_invlist_array(pTHX_ HV* const invlist)
__attribute__warn_unused_result__