diff options
author | Tor Lillqvist <tml@iki.fi> | 2012-04-24 21:56:55 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2012-04-24 23:56:48 +0300 |
commit | ac1a6df9c8d73583cf81f24670fcff1991f2e3c4 (patch) | |
tree | e340a1e39c24ab45fa98e7111e71be676cd174d5 /cppuhelper | |
parent | 39bb77fd667f9d9fdaf374f3934b6eec7b7dc57a (diff) |
WaE: implicit conversion changes signedness
Diffstat (limited to 'cppuhelper')
-rw-r--r-- | cppuhelper/inc/cppuhelper/interfacecontainer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cppuhelper/inc/cppuhelper/interfacecontainer.h b/cppuhelper/inc/cppuhelper/interfacecontainer.h index 77c39f646294..251297de732b 100644 --- a/cppuhelper/inc/cppuhelper/interfacecontainer.h +++ b/cppuhelper/inc/cppuhelper/interfacecontainer.h @@ -509,7 +509,7 @@ struct OBroadcastHelperVar struct hashType_Impl { size_t operator()(const ::com::sun::star::uno::Type & s) const SAL_THROW(()) - { return s.getTypeName().hashCode(); } + { return (size_t) s.getTypeName().hashCode(); } }; |