* math.c (Need_Float): call rb_to_float() only when it is really

needed.  small performance improvement.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22575 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2009-02-23 15:51:31 +00:00
Родитель e69f212933
Коммит 0b58675868
2 изменённых файлов: 4 добавлений и 1 удалений

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

@ -3,6 +3,9 @@ Tue Feb 24 00:24:13 2009 Yukihiro Matsumoto <matz@ruby-lang.org>
* range.c (range_each): check #succ only when it is really
needed. small performance improvement.
* math.c (Need_Float): call rb_to_float() only when it is really
needed. small performance improvement.
Tue Feb 24 00:19:33 2009 Yukihiro Matsumoto <matz@ruby-lang.org>
* lib/pathname.rb (Pathname#foreachline): removed wrongly

2
math.c
Просмотреть файл

@ -16,7 +16,7 @@
VALUE rb_mMath;
extern VALUE rb_to_float(VALUE val);
#define Need_Float(x) (x) = rb_to_float(x)
#define Need_Float(x) do {if (TYPE(x) != T_FLOAT) {(x) = rb_to_float(x);}} while(0)
#define Need_Float2(x,y) do {\
Need_Float(x);\
Need_Float(y);\