mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* internal.h (rb_int128t2big): declare only when HAVE_INT128_T.
fixed a compile error with VC++ introduced at r54203. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54205 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
ce5ba9197d
commit
6d97a5de09
2 changed files with 6 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
Sun Mar 20 21:17:13 2016 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* internal.h (rb_int128t2big): declare only when HAVE_INT128_T.
|
||||
fixed a compile error with VC++ introduced at r54203.
|
||||
|
||||
Sun Mar 20 20:10:14 2016 NARUSE, Yui <naruse@ruby-lang.org>
|
||||
|
||||
* internal.h (DLONG): defined if long is 32bit (and LONG_LONG is 64bit;
|
||||
|
|
|
@ -272,9 +272,8 @@ nlz_int128(uint128_t x)
|
|||
#elif defined(HAVE_INT128_T)
|
||||
# define DLONG int128_t
|
||||
# define DL2NUM(x) (RB_FIXABLE(x) ? LONG2FIX(x) : rb_int128t2big(x))
|
||||
#endif
|
||||
|
||||
VALUE rb_int128t2big(int128_t n);
|
||||
#endif
|
||||
|
||||
/* arguments must be Fixnum */
|
||||
static inline VALUE
|
||||
|
|
Loading…
Reference in a new issue