diff options
author | 卜部昌平 <[email protected]> | 2019-08-26 15:20:15 +0900 |
---|---|---|
committer | 卜部昌平 <[email protected]> | 2019-08-27 15:52:26 +0900 |
commit | 703783324c16b8b2b50210d1a7d1119902abbb8b (patch) | |
tree | d594ba9029a1ddcee223fcb2f39be07ef20daca1 /gc.c | |
parent | 5c7c2d9951f2512ca10ea38fecc48d8ac67502e6 (diff) |
rb_ensure now free from ANYARGS
After 5e86b005c0f2ef30df2f9906c7e2f3abefe286a2, I now think ANYARGS is
dangerous and should be extinct. This commit deletes ANYARGS from
rb_ensure, which also revealed many arity / type mismatches.
Diffstat (limited to 'gc.c')
-rw-r--r-- | gc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2755,7 +2755,7 @@ objspace_each_objects_protected(VALUE arg) } static VALUE -incremental_enable(void) +incremental_enable(VALUE _) { rb_objspace_t *objspace = &rb_objspace; |