* 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:
matz 2008-08-12 09:47:49 +00:00
Родитель 79cd32fe3b
Коммит 5643c0d69a
2 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -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;