diff options
author | Jemma Issroff <[email protected]> | 2023-10-25 17:37:37 -0300 |
---|---|---|
committer | Jemma Issroff <[email protected]> | 2023-10-25 18:18:35 -0300 |
commit | b5f6e2a7c4c5119d9518a51e37d94418ec8f55f6 (patch) | |
tree | 7f427f71a73594b3eb0d1bfa11372226f75a7da8 /compile.c | |
parent | 8f71a5c53007b072341775e4161ec20b50ffc538 (diff) |
[PRISM] ScopeNode doesn't need void * anymore
Diffstat (limited to 'compile.c')
-rw-r--r-- | compile.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -984,7 +984,7 @@ rb_iseq_compile_prism_node(rb_iseq_t * iseq, pm_scope_node_t *scope_node, pm_par constants[index] = rb_intern3((const char *) constant->start, constant->length, encoding); } - scope_node->constants = (void *)constants; + scope_node->constants = constants; CHECK(rb_translate_prism(iseq, scope_node, ret)); free(constants); |