Kaydet (Commit) 2d3030b1 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Revert "sal: fix some clang warning about implicit bool conversion"

This reverts commit 56ff07a7, the correct fix is
d19598b5 "Adapt ImplicitBoolConversion to 32-bit
builds (where sal_Int32 is long)."
üst 18044a60
......@@ -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: */
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