summaryrefslogtreecommitdiff
path: root/cppuhelper
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2012-04-24 21:56:55 +0300
committerTor Lillqvist <tml@iki.fi>2012-04-24 23:56:48 +0300
commitac1a6df9c8d73583cf81f24670fcff1991f2e3c4 (patch)
treee340a1e39c24ab45fa98e7111e71be676cd174d5 /cppuhelper
parent39bb77fd667f9d9fdaf374f3934b6eec7b7dc57a (diff)
WaE: implicit conversion changes signedness
Diffstat (limited to 'cppuhelper')
-rw-r--r--cppuhelper/inc/cppuhelper/interfacecontainer.h2
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(); }
};