summaryrefslogtreecommitdiff
path: root/vm.c
diff options
context:
space:
mode:
authorAlan Wu <XrXr@users.noreply.github.com>2020-11-09 10:27:31 -0500
committerAlan Wu <XrXr@users.noreply.github.com>2020-11-09 16:08:36 -0500
commit6817f4c6b1ab58d74bab989de984bd1d84be233c (patch)
tree3807f5e00fcfcda3a32606316d6f97be7c52f080 /vm.c
parentcbe869b3707feac4e3de22ab63c40fb881640c53 (diff)
rb_vm_add_root_module(): Remove unused parameter
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/3741
Diffstat (limited to 'vm.c')
-rw-r--r--vm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm.c b/vm.c
index 83911f8e14..f3a6803ee0 100644
--- a/vm.c
+++ b/vm.c
@@ -2597,7 +2597,7 @@ rb_vm_register_special_exception_str(enum ruby_special_exceptions sp, VALUE cls,
}
int
-rb_vm_add_root_module(ID id, VALUE module)
+rb_vm_add_root_module(VALUE module)
{
rb_vm_t *vm = GET_VM();