summaryrefslogtreecommitdiff
path: root/sal
diff options
context:
space:
mode:
Diffstat (limited to 'sal')
-rw-r--r--sal/inc/rtl/string.hxx2
-rw-r--r--sal/inc/rtl/ustring.hxx2
2 files changed, 4 insertions, 0 deletions
diff --git a/sal/inc/rtl/string.hxx b/sal/inc/rtl/string.hxx
index b7502641ac14..6b3d2fff877a 100644
--- a/sal/inc/rtl/string.hxx
+++ b/sal/inc/rtl/string.hxx
@@ -1522,7 +1522,9 @@ public:
*/
static OString number( unsigned long ll, sal_Int16 radix = 10 )
{
+#if SAL_TYPES_SIZEOFLONG == 8
assert( ll <= SAL_MAX_INT64 ); // valueOfInt64 may not be able to handle the highest bit
+#endif
sal_Char aBuf[RTL_STR_MAX_VALUEOFINT64];
rtl_String* pNewData = 0;
rtl_string_newFromStr_WithLength( &pNewData, aBuf, rtl_str_valueOfInt64( aBuf, ll, radix ) );
diff --git a/sal/inc/rtl/ustring.hxx b/sal/inc/rtl/ustring.hxx
index f057166c078f..a4051ac928e4 100644
--- a/sal/inc/rtl/ustring.hxx
+++ b/sal/inc/rtl/ustring.hxx
@@ -2156,7 +2156,9 @@ public:
*/
static OUString number( unsigned long ll, sal_Int16 radix = 10 )
{
+#if SAL_TYPES_SIZEOFLONG == 8
assert( ll <= SAL_MAX_INT64 ); // valueOfInt64 may not be able to handle the highest bit
+#endif
sal_Unicode aBuf[RTL_STR_MAX_VALUEOFINT64];
rtl_uString* pNewData = 0;
rtl_uString_newFromStr_WithLength( &pNewData, aBuf, rtl_ustr_valueOfInt64( aBuf, ll, radix ) );