diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-05-26 04:58:15 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-05-26 04:58:15 +0000 |
| commit | b8a9fb0e26a7b58481d44b6c2caba076c9cf4f57 (patch) | |
| tree | 6d29af9160ee116fe6c7e170f253bfa8d320b599 /numeric.c | |
| parent | 1b5de6c2aba0e9b66c2e3582be7269ffb7f10545 (diff) | |
| download | ruby-b8a9fb0e26a7b58481d44b6c2caba076c9cf4f57.tar.gz ruby-b8a9fb0e26a7b58481d44b6c2caba076c9cf4f57.tar.xz ruby-b8a9fb0e26a7b58481d44b6c2caba076c9cf4f57.zip | |
* common.mk (bignum.o, numeric.o): depend on util.h.
* bignum.c, marshal.c: fixed types.
* numeric.c (infinite_value): use ruby_div0.
* include/ruby/util.h (ruby_div0): moved from marshal.c.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@23575 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'numeric.c')
| -rw-r--r-- | numeric.c | 15 |
1 files changed, 2 insertions, 13 deletions
@@ -11,6 +11,7 @@ #include "ruby/ruby.h" #include "ruby/encoding.h" +#include "ruby/util.h" #include <ctype.h> #include <math.h> #include <stdio.h> @@ -2449,19 +2450,7 @@ int_pow(long x, unsigned long y) return LONG2NUM(z); } -#if defined _MSC_VER && _MSC_VER >= 1300 -#pragma warning(push) -#pragma warning(disable:4723) -#endif -static inline double -infinite_value(void) -{ - static const double zero = 0.0; - return 1.0 / zero; -} -#if defined _MSC_VER && _MSC_VER >= 1300 -#pragma warning(pop) -#endif +#define infinite_value() ruby_div0(1.0) /* * call-seq: |
