diff options
author | David Tardon <dtardon@redhat.com> | 2014-10-17 13:08:32 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2014-10-17 13:17:21 +0200 |
commit | 968cadb82542b23271b8c472a2e6ec9248343925 (patch) | |
tree | a86a6c4fa87f43c3b053e38c0294ae5cbb234719 /include/tools | |
parent | 08280034197b577abf994cc05322c010fd1f9895 (diff) |
allow construction of BigInt from sal_Int64 on 32 bit
Change-Id: Ib68920fc9bd693d2f2679b4fc27d9956dc42fc86
Diffstat (limited to 'include/tools')
-rw-r--r-- | include/tools/bigint.hxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/tools/bigint.hxx b/include/tools/bigint.hxx index c4c1c6d7b9fe..4236692b51bb 100644 --- a/include/tools/bigint.hxx +++ b/include/tools/bigint.hxx @@ -99,6 +99,9 @@ public: } BigInt( sal_uInt32 nVal ); +#if SAL_TYPES_SIZEOFLONG < SAL_TYPES_SIZEOFLONGLONG + BigInt( long long nVal ); +#endif BigInt( const BigInt& rBigInt ); BigInt( const OUString& rString ); |