diff options
author | David Tardon <dtardon@redhat.com> | 2014-10-17 22:01:43 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2014-10-17 22:02:32 +0200 |
commit | 5cdede38ff285ff241760e853e04ffd8035a3467 (patch) | |
tree | f55ae3343cd1b622ba8f52dd389c2308c32a0a49 | |
parent | 90c2dd6efb17bca4f7071b7878f8e954aa270b17 (diff) |
now why did i do this?
Change-Id: Icf1fc5643271672761b565c30382e70c689c29b4
-rw-r--r-- | tools/source/generic/bigint.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/source/generic/bigint.cxx b/tools/source/generic/bigint.cxx index a6acdc8bb98c..fcb7da378fe5 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); |