summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2011-03-08 23:19:16 -0700
committerKarl Williamson <public@khwilliamson.com>2011-03-08 23:22:21 -0700
commitc45df5a16bb5a26a06275cc63f2c3e6b1d708184 (patch)
tree88cc30c132184542c0bc02bb072cae60b2af3a92 /proto.h
parentb8953805dfeee53cd2300f61834ba32ccaaefaa8 (diff)
downloadperl-c45df5a16bb5a26a06275cc63f2c3e6b1d708184.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 644665afa6..5f8daeb444 100644
--- a/proto.h
+++ b/proto.h
@@ -5993,11 +5993,10 @@ STATIC void S_cl_anything(struct regnode_charclass_class *cl)
#define PERL_ARGS_ASSERT_CL_ANYTHING \
assert(cl)
-STATIC void S_cl_init(const struct RExC_state_t *pRExC_state, struct regnode_charclass_class *cl)
- __attribute__nonnull__(1)
- __attribute__nonnull__(2);
+STATIC void S_cl_init(struct regnode_charclass_class *cl)
+ __attribute__nonnull__(1);
#define PERL_ARGS_ASSERT_CL_INIT \
- assert(pRExC_state); assert(cl)
+ assert(cl)
STATIC int S_cl_is_anything(const struct regnode_charclass_class *cl)
__attribute__warn_unused_result__