diff options
author | 卜部昌平 <[email protected]> | 2019-08-26 15:35:28 +0900 |
---|---|---|
committer | 卜部昌平 <[email protected]> | 2019-08-27 15:52:26 +0900 |
commit | bc3e7924bc66d3ef77b219c72f3e59cc154550a3 (patch) | |
tree | 44aed5a94d9d16dee2af0f92ed4653d6e2deb198 /gc.c | |
parent | af5e2566405e4808a6d0a29c5b7d305d6fc0aada (diff) |
rb_proc_new / rb_fiber_new now free from ANYARGS
After 5e86b005c0f2ef30df2f9906c7e2f3abefe286a2, I now think ANYARGS is
dangerous and should be extinct. This commit deletes ANYARGS from
rb_proc_new / rb_fiber_new, and applies RB_BLOCK_CALL_FUNC_ARGLIST
wherever necessary.
Diffstat (limited to 'gc.c')
-rw-r--r-- | gc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8867,7 +8867,7 @@ compat_key(VALUE key) } static VALUE -default_proc_for_compat_func(VALUE hash, VALUE dmy, int argc, VALUE *argv) +default_proc_for_compat_func(RB_BLOCK_CALL_FUNC_ARGLIST(hash, _)) { VALUE key, new_key; |