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

merge revision(s) 58057: [Backport #13353]

stringio.c: RB_INTEGER_TYPE_P

	* ext/stringio/stringio.c (RB_INTEGER_TYPE_P): fallback definition
	  for 2.3 or earlier.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_3@58165 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nagachika 2017-03-27 15:51:02 +00:00
parent 715f997ab7
commit 7cbc39be69
2 changed files with 5 additions and 1 deletions

View file

@ -20,6 +20,10 @@
#include <sys/fcntl.h>
#endif
#ifndef RB_INTEGER_TYPE_P
# define RB_INTEGER_TYPE_P(c) (FIXNUM_P(c) || RB_TYPE_P(c, T_BIGNUM))
#endif
struct StringIO {
VALUE string;
rb_encoding *enc;

View file

@ -1,6 +1,6 @@
#define RUBY_VERSION "2.3.3"
#define RUBY_RELEASE_DATE "2017-03-28"
#define RUBY_PATCHLEVEL 274
#define RUBY_PATCHLEVEL 275
#define RUBY_RELEASE_YEAR 2017
#define RUBY_RELEASE_MONTH 3