Index: src/double.h |
=================================================================== |
--- src/double.h (revision 11404) |
+++ src/double.h (working copy) |
@@ -130,12 +130,6 @@ |
return (d64 & kExponentMask) == kExponentMask; |
} |
- bool IsNan() const { |
- uint64_t d64 = AsUint64(); |
- return ((d64 & kExponentMask) == kExponentMask) && |
- ((d64 & kSignificandMask) != 0); |
- } |
- |
bool IsInfinite() const { |
uint64_t d64 = AsUint64(); |
return ((d64 & kExponentMask) == kExponentMask) && |