diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-02-23 15:51:31 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-02-23 15:51:31 +0000 |
| commit | 497fa6222e47837f2b8d19931589f03846c331fc (patch) | |
| tree | 705c0f51b0940e2b3277a8c60b98f5e7bd21d472 /math.c | |
| parent | ec4fcf3c171ad5d4026663b2d241740040d9994c (diff) | |
| download | ruby-497fa6222e47837f2b8d19931589f03846c331fc.tar.gz ruby-497fa6222e47837f2b8d19931589f03846c331fc.tar.xz ruby-497fa6222e47837f2b8d19931589f03846c331fc.zip | |
* math.c (Need_Float): call rb_to_float() only when it is really
needed. small performance improvement.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22575 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'math.c')
| -rw-r--r-- | math.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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);\ |
