Kaydet (Commit) ac1a6df9 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

WaE: implicit conversion changes signedness

üst 39bb77fd
...@@ -509,7 +509,7 @@ struct OBroadcastHelperVar ...@@ -509,7 +509,7 @@ struct OBroadcastHelperVar
struct hashType_Impl struct hashType_Impl
{ {
size_t operator()(const ::com::sun::star::uno::Type & s) const SAL_THROW(()) size_t operator()(const ::com::sun::star::uno::Type & s) const SAL_THROW(())
{ return s.getTypeName().hashCode(); } { return (size_t) s.getTypeName().hashCode(); }
}; };
......
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