Kaydet (Commit) ed26a93b authored tarafından Luboš Luňák's avatar Luboš Luňák

avoid warning about a comparison being always true

Change-Id: Ie0bd47a16af56b7d3ae070d5b82ec46ed21834c0
üst 1efe9a15
...@@ -1522,7 +1522,9 @@ public: ...@@ -1522,7 +1522,9 @@ public:
*/ */
static OString number( unsigned long ll, sal_Int16 radix = 10 ) 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 assert( ll <= SAL_MAX_INT64 ); // valueOfInt64 may not be able to handle the highest bit
#endif
sal_Char aBuf[RTL_STR_MAX_VALUEOFINT64]; sal_Char aBuf[RTL_STR_MAX_VALUEOFINT64];
rtl_String* pNewData = 0; rtl_String* pNewData = 0;
rtl_string_newFromStr_WithLength( &pNewData, aBuf, rtl_str_valueOfInt64( aBuf, ll, radix ) ); rtl_string_newFromStr_WithLength( &pNewData, aBuf, rtl_str_valueOfInt64( aBuf, ll, radix ) );
......
...@@ -2156,7 +2156,9 @@ public: ...@@ -2156,7 +2156,9 @@ public:
*/ */
static OUString number( unsigned long ll, sal_Int16 radix = 10 ) 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 assert( ll <= SAL_MAX_INT64 ); // valueOfInt64 may not be able to handle the highest bit
#endif
sal_Unicode aBuf[RTL_STR_MAX_VALUEOFINT64]; sal_Unicode aBuf[RTL_STR_MAX_VALUEOFINT64];
rtl_uString* pNewData = 0; rtl_uString* pNewData = 0;
rtl_uString_newFromStr_WithLength( &pNewData, aBuf, rtl_ustr_valueOfInt64( aBuf, ll, radix ) ); rtl_uString_newFromStr_WithLength( &pNewData, aBuf, rtl_ustr_valueOfInt64( aBuf, ll, radix ) );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment