[Libreoffice-commits] core.git: sal/rtl
Eike Rathke (via logerrit)
logerrit at kemper.freedesktop.org
Wed Dec 2 10:38:02 UTC 2020
sal/rtl/math.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit d8e0b1c81ffa16be8aae2231bcd3c02e8c01cf88
Author: Eike Rathke <erack at redhat.com>
AuthorDate: Tue Dec 1 23:22:33 2020 +0100
Commit: Eike Rathke <erack at redhat.com>
CommitDate: Wed Dec 2 11:37:11 2020 +0100
Typo in rounded digit string, tdf#138360 follow-up
Change-Id: Ic436d3e9f0c93cb36c5e4377519f2aeb6b7fbd5f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/107034
Reviewed-by: Eike Rathke <erack at redhat.com>
Tested-by: Jenkins
diff --git a/sal/rtl/math.cxx b/sal/rtl/math.cxx
index 10417742b3a2..e6f09f18030e 100644
--- a/sal/rtl/math.cxx
+++ b/sal/rtl/math.cxx
@@ -290,7 +290,7 @@ void doubleToString(typename T::String ** pResult,
// Writing pDig up to decimals(-1,-2) then appending one digit from
// pRou xor one or two digits from pSlot[].
constexpr char pDig[] = "7976931348623157";
- constexpr char pRou[] = "8087931459623267"; // the only up-carry is 80
+ constexpr char pRou[] = "8087931359623267"; // the only up-carry is 80
static_assert(SAL_N_ELEMENTS(pDig) == SAL_N_ELEMENTS(pRou), "digit count mismatch");
constexpr sal_Int32 nDig2 = RTL_CONSTASCII_LENGTH(pRou) - 2;
sal_Int32 nCapacity = RTL_CONSTASCII_LENGTH(pRou) + 8; // + "-1.E+308"
More information about the Libreoffice-commits
mailing list