[Libreoffice-commits] core.git: tools/source

David Tardon dtardon at redhat.com
Fri Oct 17 13:03:01 PDT 2014


 tools/source/generic/bigint.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 5cdede38ff285ff241760e853e04ffd8035a3467
Author: David Tardon <dtardon at redhat.com>
Date:   Fri Oct 17 22:01:43 2014 +0200

    now why did i do this?
    
    Change-Id: Icf1fc5643271672761b565c30382e70c689c29b4

diff --git a/tools/source/generic/bigint.cxx b/tools/source/generic/bigint.cxx
index a6acdc8..fcb7da3 100644
--- a/tools/source/generic/bigint.cxx
+++ b/tools/source/generic/bigint.cxx
@@ -594,7 +594,7 @@ BigInt::BigInt( long long nValue )
     else
     {
         bIsBig  = true;
-        const unsigned long long nUValue = static_cast<unsigned long long>(bIsNeg ? -nValue : nValue);
+        unsigned long long nUValue = static_cast<unsigned long long>(bIsNeg ? -nValue : nValue);
         for (int i = 0; (i != sizeof(unsigned long long) / 2) && (nUValue != 0); ++i)
         {
             nNum[i] = static_cast<sal_uInt16>(nUValue & 0xffffUL);


More information about the Libreoffice-commits mailing list