ruby-changes:29062
From: eregon <ko1@a...>
Date: Fri, 7 Jun 2013 06:49:56 +0900 (JST)
Subject: [ruby-changes:29062] eregon:r41114 (trunk): * numeric.c: remove unused ID id_to_r introduced in r41109.
eregon 2013-06-07 06:49:45 +0900 (Fri, 07 Jun 2013) New Revision: 41114 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=41114 Log: * numeric.c: remove unused ID id_to_r introduced in r41109. Modified files: trunk/ChangeLog trunk/numeric.c Index: ChangeLog =================================================================== --- ChangeLog (revision 41113) +++ ChangeLog (revision 41114) @@ -1,3 +1,7 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Fri Jun 7 06:48:17 2013 Benoit Daloze <eregontp@g...> + + * numeric.c: remove unused ID id_to_r introduced in r41109. + Fri Jun 7 06:15:31 2013 Tanaka Akira <akr@f...> * bignum.c (rb_int_import): New function. Index: numeric.c =================================================================== --- numeric.c (revision 41113) +++ numeric.c (revision 41114) @@ -101,7 +101,7 @@ static VALUE fix_uminus(VALUE num); https://github.com/ruby/ruby/blob/trunk/numeric.c#L101 static VALUE fix_mul(VALUE x, VALUE y); static VALUE int_pow(long x, unsigned long y); -static ID id_coerce, id_to_i, id_to_r, id_eq, id_div; +static ID id_coerce, id_to_i, id_eq, id_div; VALUE rb_cNumeric; VALUE rb_cFloat; @@ -3775,7 +3775,6 @@ Init_Numeric(void) https://github.com/ruby/ruby/blob/trunk/numeric.c#L3775 #endif id_coerce = rb_intern("coerce"); id_to_i = rb_intern("to_i"); - id_to_r = rb_intern("to_r"); id_eq = rb_intern("=="); id_div = rb_intern("div"); -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/