summaryrefslogtreecommitdiff
path: root/template
diff options
context:
space:
mode:
authornagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-04-25 17:53:49 +0000
committernagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-04-25 17:53:49 +0000
commit7f36210ab24273c3831f41704852a11a47c6648e (patch)
tree7454b2d68304ec8a26ab6532d63f7230df267687 /template
parent6ccc9e9f95556ddb8ada02a144ec20e892215c3d (diff)
merge revision(s) 54758:
sizes.c.tmpl: extra semicolon * template/sizes.c.tmpl (DEFINE): remove extra semicolon. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_3@54764 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'template')
-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]