[前][次][番号順一覧][スレッド一覧]

ruby-changes:49613

From: shyouhei <ko1@a...>
Date: Tue, 9 Jan 2018 22:30:33 +0900 (JST)
Subject: [ruby-changes:49613] shyouhei:r61728 (trunk): rb_num_t happen to be unsigned; introduce signed variant

shyouhei	2018-01-09 22:30:27 +0900 (Tue, 09 Jan 2018)

  New Revision: 61728

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=61728

  Log:
    rb_num_t happen to be unsigned; introduce signed variant

  Modified files:
    trunk/vm_core.h
Index: vm_core.h
===================================================================
--- vm_core.h	(revision 61727)
+++ vm_core.h	(revision 61728)
@@ -136,6 +136,7 @@ https://github.com/ruby/ruby/blob/trunk/vm_core.h#L136
 #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,

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]