Unverified Commit e6b06eaf authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto Committed by GitHub

Merge pull request #5182 from...

Merge pull request #5182 from shuujii/use-local-variables-instead-of-top-level-constants-in-boxing.rb

Use local variables instead of top level constants in `boxing.rb` [ci skip]
parents 39a11f32 0d8b1eae
BOXINGS = %w[no word nan] boxings = %w[no word nan]
BITS = [64, 32] bits = [64, 32]
INTS = [64, 32] ints = [64, 32]
BOXINGS.product(BITS, INTS) do |boxing, bit, int| boxings.product(bits, ints) do |boxing, bit, int|
next if boxing == "nan" && int == 64 next if boxing == "nan" && int == 64
MRuby::Build.new("boxing-#{boxing}-m#{bit}-i#{int}") do |conf| MRuby::Build.new("boxing-#{boxing}-m#{bit}-i#{int}") do |conf|
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment