зеркало из https://github.com/github/ruby.git
* ext/bigdecimal/bigdecimal.c (BigDecimalCmp): should not ignore
<=> comparison. [ruby-dev:35732] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18533 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
79cd32fe3b
Коммит
5643c0d69a
|
@ -1,3 +1,8 @@
|
|||
Tue Aug 12 18:46:36 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
||||
* ext/bigdecimal/bigdecimal.c (BigDecimalCmp): should not ignore
|
||||
<=> comparison. [ruby-dev:35732]
|
||||
|
||||
Tue Aug 12 18:43:10 2008 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* enc/trans/make_transdb.rb: *.erb.c is not used anymore.
|
||||
|
|
|
@ -734,7 +734,7 @@ BigDecimalCmp(VALUE self, VALUE r,char op)
|
|||
|
||||
switch(op)
|
||||
{
|
||||
case '*': return Qnil; /* any op */
|
||||
case '*': f = rb_intern("<=>");break;
|
||||
case '=': f = rb_intern("=="); break;
|
||||
case '!': f = rb_intern("!="); break;
|
||||
case 'G': f = rb_intern(">="); break;
|
||||
|
|
Загрузка…
Ссылка в новой задаче