From 30bd46a358a79e9c74ce041dd7e77162f3603ff4 Mon Sep 17 00:00:00 2001 From: shyouhei Date: Tue, 9 Jan 2018 13:30:33 +0000 Subject: comma at the end of enum is a C99ism. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61734 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- tool/ruby_vm/views/_insn_type_chars.erb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tool') diff --git a/tool/ruby_vm/views/_insn_type_chars.erb b/tool/ruby_vm/views/_insn_type_chars.erb index 296004d458..b3eff5624f 100644 --- a/tool/ruby_vm/views/_insn_type_chars.erb +++ b/tool/ruby_vm/views/_insn_type_chars.erb @@ -5,8 +5,8 @@ %# granted, to either redistribute and/or modify this file, provided that the %# conditions mentioned in the file COPYING are met. Consult the file for %# details. +% +% map = RubyVM::Typemap.each_pair.map {|k, (c, t)| sprintf "%s = '%s'", t, c } enum ruby_insn_type_chars { -% RubyVM::Typemap.each_pair do |k, (c, t)| - <%= t %> = '<%= c %>', -% end + <%= map.join(",\n ") %> }; -- cgit v1.2.3