Revert "sal: fix some clang warning about implicit bool conversion"
This reverts commit56ff07a795
, the correct fix isd19598b56c
"Adapt ImplicitBoolConversion to 32-bit builds (where sal_Int32 is long)."
This commit is contained in:
@@ -316,7 +316,7 @@ sal_Int32 SAL_CALL rtl_locale_hashCode( rtl_Locale * This )
|
||||
*/
|
||||
sal_Int32 SAL_CALL rtl_locale_equals( rtl_Locale * This, rtl_Locale * obj )
|
||||
{
|
||||
return sal_Int32(This == obj);
|
||||
return This == obj;
|
||||
}
|
||||
|
||||
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|
||||
|
Reference in New Issue
Block a user