summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2011-03-08 23:08:16 -0700
committerKarl Williamson <public@khwilliamson.com>2011-03-08 23:22:19 -0700
commit2f88b8574d3a767b1b37edf9927413bbc8ffd0a4 (patch)
treeca7677cf76dda51e4b74c765c1ed1d961562f9c7 /proto.h
parent1411dba431b74256819ba8c07e7a61e2aa0b1742 (diff)
downloadperl-2f88b8574d3a767b1b37edf9927413bbc8ffd0a4.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 03ced95ef2..c6b2d7882d 100644
--- a/proto.h
+++ b/proto.h
@@ -5988,11 +5988,10 @@ STATIC void S_cl_and(struct regnode_charclass_class *cl, const struct regnode_ch
#define PERL_ARGS_ASSERT_CL_AND \
assert(cl); assert(and_with)
-STATIC void S_cl_anything(const struct RExC_state_t *pRExC_state, struct regnode_charclass_class *cl)
- __attribute__nonnull__(1)
- __attribute__nonnull__(2);
+STATIC void S_cl_anything(struct regnode_charclass_class *cl)
+ __attribute__nonnull__(1);
#define PERL_ARGS_ASSERT_CL_ANYTHING \
- assert(pRExC_state); assert(cl)
+ assert(cl)
STATIC void S_cl_init(const struct RExC_state_t *pRExC_state, struct regnode_charclass_class *cl)
__attribute__nonnull__(1)