Index: Source/platform/Decimal.cpp |
diff --git a/Source/platform/Decimal.cpp b/Source/platform/Decimal.cpp |
index 5ee960b6179d420649f8ff9c7bb02ada6c6798b8..c00a7fd3cf6a7f75af40f70d37449fd456716f8a 100644 |
--- a/Source/platform/Decimal.cpp |
+++ b/Source/platform/Decimal.cpp |
@@ -46,7 +46,7 @@ static int const ExponentMax = 1023; |
static int const ExponentMin = -1023; |
static int const Precision = 18; |
-static const uint64_t MaxCoefficient = UINT64_C(0x16345785D89FFFF); // 999999999999999999 == 18 9's |
+static const uint64_t MaxCoefficient = UINT64_C(0XDE0B6B3A763FFFF); // 999999999999999999 == 18 9's |
yosin_UTC9
2014/05/19 05:36:25
nit: Please use small "x" instead of capital "X" f
Inactive
2014/05/19 13:06:54
Done.
|
// This class handles Decimal special values. |
class SpecialValueHandler { |