diff options
author | Takashi Kokubun <[email protected]> | 2022-09-05 00:26:24 -0700 |
---|---|---|
committer | Takashi Kokubun <[email protected]> | 2022-09-05 00:27:49 -0700 |
commit | c2986f7d28539ed81085272f17c2ce53435a06d1 (patch) | |
tree | ba1c4c3ab3354259d41ba87ca996432f5dd65995 /tool/ruby_vm/views | |
parent | d77c037a16e524acf3804f484b6d2c231e3c3880 (diff) |
Fix warnings from private_constant
`private_constant *constants` seems to be warned for some reason
Diffstat (limited to 'tool/ruby_vm/views')
-rw-r--r-- | tool/ruby_vm/views/mjit_instruction.rb.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/ruby_vm/views/mjit_instruction.rb.erb b/tool/ruby_vm/views/mjit_instruction.rb.erb index 1f49669fa5..1c462de53a 100644 --- a/tool/ruby_vm/views/mjit_instruction.rb.erb +++ b/tool/ruby_vm/views/mjit_instruction.rb.erb @@ -36,5 +36,5 @@ module RubyVM::MJIT % end } - private_constant *constants + private_constant(*constants) end if RubyVM::MJIT.enabled? |