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

* ext/mathn/complex/complex.c: no need to define rb_cComplex because

it's already defined at $(srcdir)/complex.c.

	* ext/mathn/rational/rational.c: no need to define rb_cRational because
	  it's already defined at $(srcdir)/rational.c.



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19967 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2008-10-27 11:07:37 +00:00
parent 85101b7625
commit 46f8afdc56
3 changed files with 12 additions and 0 deletions

View file

@ -1,3 +1,11 @@
Mon Oct 27 20:03:05 2008 NAKAMURA Usaku <usa@ruby-lang.org>
* ext/mathn/complex/complex.c: no need to define rb_cComplex because
it's already defined at $(srcdir)/complex.c.
* ext/mathn/rational/rational.c: no need to define rb_cRational because
it's already defined at $(srcdir)/rational.c.
Mon Oct 27 15:58:25 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
* ruby.c (load_file): preserves $.. [ruby-dev:36937]

View file

@ -24,7 +24,9 @@
#define ONE INT2FIX(1)
#define TWO INT2FIX(2)
#if 0
VALUE rb_cComplex;
#endif
static ID id_abs, id_abs2, id_arg, id_cmp, id_conj, id_convert,
id_denominator, id_divmod, id_equal_p, id_expt, id_floor, id_hash,

View file

@ -30,7 +30,9 @@
#define ONE INT2FIX(1)
#define TWO INT2FIX(2)
#if 0
VALUE rb_cRational;
#endif
static ID id_abs, id_cmp, id_convert, id_equal_p, id_expt, id_floor,
id_format, id_hash, id_idiv, id_inspect, id_integer_p, id_negate,