1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

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
This commit is contained in:
nagachika 2016-04-25 17:53:49 +00:00
parent 6ccc9e9f95
commit 7f36210ab2
2 changed files with 4 additions and 4 deletions

View file

@ -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]

View file

@ -1,10 +1,10 @@
#define RUBY_VERSION "2.3.0"
#define RUBY_RELEASE_DATE "2016-04-25"
#define RUBY_PATCHLEVEL 108
#define RUBY_RELEASE_DATE "2016-04-26"
#define RUBY_PATCHLEVEL 109
#define RUBY_RELEASE_YEAR 2016
#define RUBY_RELEASE_MONTH 4
#define RUBY_RELEASE_DAY 25
#define RUBY_RELEASE_DAY 26
#include "ruby/version.h"