Index: src/objects-debug.cc |
diff --git a/src/objects-debug.cc b/src/objects-debug.cc |
index 24730a04127f4f5a54e6cc902f8a42db6b7bf44b..32adf093055400092db719c62abb1a5374715bbe 100644 |
--- a/src/objects-debug.cc |
+++ b/src/objects-debug.cc |
@@ -401,7 +401,7 @@ void FixedDoubleArray::FixedDoubleArrayVerify() { |
for (int i = 0; i < length(); i++) { |
if (!is_the_hole(i)) { |
double value = get_scalar(i); |
- CHECK(!isnan(value) || |
+ CHECK(!std::isnan(value) || |
(BitCast<uint64_t>(value) == |
BitCast<uint64_t>(canonical_not_the_hole_nan_as_double())) || |
((BitCast<uint64_t>(value) & Double::kSignMask) != 0)); |