Index: Source/platform/Decimal.cpp |
diff --git a/Source/platform/Decimal.cpp b/Source/platform/Decimal.cpp |
index b8c093e3f4e130ea2b5b717d8a5f6b3a9884484c..5ee960b6179d420649f8ff9c7bb02ada6c6798b8 100644 |
--- a/Source/platform/Decimal.cpp |
+++ b/Source/platform/Decimal.cpp |
@@ -140,7 +140,6 @@ public: |
private: |
static uint32_t highUInt32(uint64_t x) { return static_cast<uint32_t>(x >> 32); } |
static uint32_t lowUInt32(uint64_t x) { return static_cast<uint32_t>(x & ((static_cast<uint64_t>(1) << 32) - 1)); } |
- bool isZero() const { return !m_low && !m_high; } |
static uint64_t makeUInt64(uint32_t low, uint32_t high) { return low | (static_cast<uint64_t>(high) << 32); } |
static uint64_t multiplyHigh(uint64_t, uint64_t); |