summaryrefslogtreecommitdiffstats
path: root/regex.c
diff options
context:
space:
mode:
Diffstat (limited to 'regex.c')
-rw-r--r--regex.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/regex.c b/regex.c
index 4bfc2f28..dc356325 100644
--- a/regex.c
+++ b/regex.c
@@ -822,7 +822,8 @@ static struct cobj_ops char_set_obj_ops = cobj_ops_init(eq,
cobj_print_op,
char_set_cobj_destroy,
cobj_mark_op,
- cobj_eq_hash_op);
+ cobj_eq_hash_op,
+ 0);
static nfa_state_t *nfa_state_accept(void)
{
@@ -1495,7 +1496,8 @@ static struct cobj_ops regex_obj_ops = cobj_ops_init(eq,
regex_print,
regex_destroy,
regex_mark,
- cobj_eq_hash_op);
+ cobj_eq_hash_op,
+ 0);
static val reg_nullable(val);