diff options
author | Karl Williamson <public@khwilliamson.com> | 2011-03-17 09:45:38 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2011-03-17 11:00:49 -0600 |
commit | e755fd737eec16006ad79b50252abf55dbc9150d (patch) | |
tree | 05e64ebe15e3ecf4bcf820de298b99a43814e632 /proto.h | |
parent | 4624b182010d01667569dd065b1c4896b5a51c95 (diff) | |
download | perl-e755fd737eec16006ad79b50252abf55dbc9150d.tar.gz |
Revert "regcomp.c: Rmv unused parameter"
This reverts commit c45df5a16bb5a26a06275cc63f2c3e6b1d708184.
The parameter is about to be put back in.
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -5993,10 +5993,11 @@ STATIC void S_cl_anything(struct regnode_charclass_class *cl) #define PERL_ARGS_ASSERT_CL_ANYTHING \ assert(cl) -STATIC void S_cl_init(struct regnode_charclass_class *cl) - __attribute__nonnull__(1); +STATIC void S_cl_init(const struct RExC_state_t *pRExC_state, struct regnode_charclass_class *cl) + __attribute__nonnull__(1) + __attribute__nonnull__(2); #define PERL_ARGS_ASSERT_CL_INIT \ - assert(cl) + assert(pRExC_state); assert(cl) STATIC int S_cl_is_anything(const struct regnode_charclass_class *cl) __attribute__warn_unused_result__ |