summaryrefslogtreecommitdiff
path: root/internal/vm.h
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 /internal/vm.h
parentcbe869b3707feac4e3de22ab63c40fb881640c53 (diff)
rb_vm_add_root_module(): Remove unused parameter
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/3741
Diffstat (limited to 'internal/vm.h')
-rw-r--r--internal/vm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/vm.h b/internal/vm.h
index 246a42a793..5af422e0e0 100644
--- a/internal/vm.h
+++ b/internal/vm.h
@@ -54,7 +54,7 @@ const void **rb_vm_get_insns_address_table(void);
VALUE rb_source_location(int *pline);
const char *rb_source_location_cstr(int *pline);
MJIT_STATIC void rb_vm_pop_cfunc_frame(void);
-int rb_vm_add_root_module(ID id, VALUE module);
+int rb_vm_add_root_module(VALUE module);
void rb_vm_check_redefinition_by_prepend(VALUE klass);
int rb_vm_check_optimizable_mid(VALUE mid);
VALUE rb_yield_refine_block(VALUE refinement, VALUE refinements);