mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
Fix indentation in switch in rb_gc_impl_mark_maybe [ci skip]
This commit is contained in:
parent
e0818ac659
commit
46d106f7ab
1 changed files with 3 additions and 3 deletions
|
@ -4454,10 +4454,10 @@ rb_gc_impl_mark_maybe(void *objspace_ptr, VALUE obj)
|
|||
asan_unpoisoning_object(obj) {
|
||||
/* Garbage can live on the stack, so do not mark or pin */
|
||||
switch (BUILTIN_TYPE(obj)) {
|
||||
case T_ZOMBIE:
|
||||
case T_NONE:
|
||||
case T_ZOMBIE:
|
||||
case T_NONE:
|
||||
break;
|
||||
default:
|
||||
default:
|
||||
gc_mark_and_pin(objspace, obj);
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue