I forgot to add break in my case statements

Give me a break.
This commit is contained in:
Aaron Patterson 2019-09-05 11:37:03 -07:00
parent 8f096226e1
commit f211ab2015
No known key found for this signature in database
GPG Key ID: 953170BCB4FFAFC6

2
node.c
View File

@ -1269,11 +1269,13 @@ mark_ast_value(void *ctx, NODE * node)
{ {
struct rb_ary_pattern_info *apinfo = node->nd_apinfo; struct rb_ary_pattern_info *apinfo = node->nd_apinfo;
rb_gc_mark(apinfo->imemo); rb_gc_mark(apinfo->imemo);
break;
} }
case NODE_ARGS: case NODE_ARGS:
{ {
struct rb_args_info *args = node->nd_ainfo; struct rb_args_info *args = node->nd_ainfo;
rb_gc_mark(args->imemo); rb_gc_mark(args->imemo);
break;
} }
case NODE_LIT: case NODE_LIT:
case NODE_STR: case NODE_STR: