summaryrefslogtreecommitdiff
path: root/random.c
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2021-08-27 10:52:02 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2021-08-27 12:41:30 +0900
commit04be8e84db1cf4f8b2a7bc7679eda4336da75d43 (patch)
treec7914614f4a5cf91109f7893b87ff9e5d143ad0e /random.c
parent37114673623c4d2b1d9f2c2ddfffba070b2d96e6 (diff)
Use C99-defined macros to classify a floating-point number
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/4783
Diffstat (limited to 'random.c')
-rw-r--r--random.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/random.c b/random.c
index 5663f87be2..232fe3e6f5 100644
--- a/random.c
+++ b/random.c
@@ -1348,7 +1348,7 @@ static inline double
float_value(VALUE v)
{
double x = RFLOAT_VALUE(v);
- if (isinf(x) || isnan(x)) {
+ if (!isfinite(x)) {
domain_error();
}
return x;