summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/tools/bigint.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/tools/bigint.hxx b/include/tools/bigint.hxx
index 6d52b60a7a63..501d9860f903 100644
--- a/include/tools/bigint.hxx
+++ b/include/tools/bigint.hxx
@@ -61,7 +61,14 @@ public:
BigInt();
BigInt( short nVal );
BigInt( long nVal );
- BigInt( int nVal );
+ BigInt(int nValue)
+ : nVal(nValue)
+ , nLen(0)
+ , bIsNeg(false)
+ , bIsBig(false)
+ , bIsSet(true)
+ {
+ }
BigInt( double nVal );
BigInt( sal_uInt16 nVal );
BigInt( sal_uInt32 nVal );
@@ -141,13 +148,6 @@ inline BigInt::BigInt( long nValue )
nVal = nValue;
}
-inline BigInt::BigInt( int nValue )
-{
- bIsSet = true;
- bIsBig = false;
- nVal = nValue;
-}
-
inline BigInt::BigInt( sal_uInt16 nValue )
{
bIsSet = true;