mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* numeric.c: remove unused ID id_to_r introduced in r41109.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41114 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
3d8f6f1ed6
commit
896619c77b
2 changed files with 5 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
|||
Fri Jun 7 06:48:17 2013 Benoit Daloze <eregontp@gmail.com>
|
||||
|
||||
* numeric.c: remove unused ID id_to_r introduced in r41109.
|
||||
|
||||
Fri Jun 7 06:15:31 2013 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* bignum.c (rb_int_import): New function.
|
||||
|
|
|
@ -101,7 +101,7 @@ static VALUE fix_uminus(VALUE num);
|
|||
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)
|
|||
#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");
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue