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

rb_num_t happen to be unsigned; introduce signed variant

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61728 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
shyouhei 2018-01-09 13:30:27 +00:00
parent 0ea778d812
commit df76e35333

View file

@ -136,6 +136,7 @@
#endif /* OPT_CALL_THREADED_CODE */
typedef unsigned long rb_num_t;
typedef signed long rb_snum_t;
enum ruby_tag_type {
RUBY_TAG_NONE = 0x0,