Adjust styles [ci skip]

This commit is contained in:
Nobuyoshi Nakada 2022-08-06 10:13:20 +09:00
parent c433d36b5b
commit 58c8b6e862
No known key found for this signature in database
GPG key ID: 7CD2805BFA3770C6
6 changed files with 32 additions and 16 deletions

View file

@ -2260,7 +2260,8 @@ rb_marshal_load_with_proc(VALUE port, VALUE proc, bool freeze)
return v;
}
static VALUE marshal_load(rb_execution_context_t *ec, VALUE mod, VALUE source, VALUE proc, VALUE freeze)
static VALUE
marshal_load(rb_execution_context_t *ec, VALUE mod, VALUE source, VALUE proc, VALUE freeze)
{
return rb_marshal_load_with_proc(source, proc, RTEST(freeze));
}