aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-04-25 05:38:55 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-04-25 05:38:55 +0000
commit75a5dcf170049bcae15b18350ff7c7950f598f01 (patch)
tree77b637d0e992ec9ffdcceef9939665429e378e99
parent847654a3c8e362f6b42f0f75a6acfad3c2d59f25 (diff)
downloadruby-75a5dcf170049bcae15b18350ff7c7950f598f01.tar.gz
sizes.c.tmpl: extra semicolon
* template/sizes.c.tmpl (DEFINE): remove extra semicolon. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54758 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--template/sizes.c.tmpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/template/sizes.c.tmpl b/template/sizes.c.tmpl
index da061ce509..bd4a7c56de 100644
--- a/template/sizes.c.tmpl
+++ b/template/sizes.c.tmpl
@@ -19,7 +19,7 @@ Init_sizeof(void)
VALUE s = rb_hash_new();
rb_define_const(rb_define_module("RbConfig"), "SIZEOF", s);
-#define DEFINE(type, size) rb_hash_aset(s, rb_str_new_cstr(#type), INT2FIX(SIZEOF_##size));
+#define DEFINE(type, size) rb_hash_aset(s, rb_str_new_cstr(#type), INT2FIX(SIZEOF_##size))
% types.each do |type|
% cond = conditions[type]