summaryrefslogtreecommitdiff
path: root/tools/source/generic/bigint.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'tools/source/generic/bigint.cxx')
-rw-r--r--tools/source/generic/bigint.cxx7
1 files changed, 0 insertions, 7 deletions
diff --git a/tools/source/generic/bigint.cxx b/tools/source/generic/bigint.cxx
index d90ac2447fa1..62350a30c311 100644
--- a/tools/source/generic/bigint.cxx
+++ b/tools/source/generic/bigint.cxx
@@ -477,7 +477,6 @@ BigInt::BigInt( const BigInt& rBigInt )
memcpy( static_cast<void*>(this), static_cast<const void*>(&rBigInt), sizeof( BigInt ) );
else
{
- bIsSet = rBigInt.bIsSet;
bIsBig = false;
nVal = rBigInt.nVal;
}
@@ -486,7 +485,6 @@ BigInt::BigInt( const BigInt& rBigInt )
BigInt::BigInt( const OUString& rString )
: nLen(0)
{
- bIsSet = true;
bIsNeg = false;
bIsBig = false;
nVal = 0;
@@ -513,8 +511,6 @@ BigInt::BigInt( const OUString& rString )
BigInt::BigInt( double nValue )
: nVal(0)
{
- bIsSet = true;
-
if ( nValue < 0 )
{
nValue *= -1;
@@ -557,7 +553,6 @@ BigInt::BigInt( double nValue )
BigInt::BigInt( sal_uInt32 nValue )
: nVal(0)
{
- bIsSet = true;
if ( nValue & 0x80000000U )
{
bIsBig = true;
@@ -578,7 +573,6 @@ BigInt::BigInt( sal_uInt32 nValue )
BigInt::BigInt( sal_Int64 nValue )
: nVal(0)
{
- bIsSet = true;
bIsNeg = nValue < 0;
nLen = 0;
@@ -632,7 +626,6 @@ BigInt& BigInt::operator=( const BigInt& rBigInt )
memcpy( static_cast<void*>(this), static_cast<const void*>(&rBigInt), sizeof( BigInt ) );
else
{
- bIsSet = rBigInt.bIsSet;
bIsBig = false;
nVal = rBigInt.nVal;
}