diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-04-01 12:48:44 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-04-01 12:48:44 +0200 |
commit | 2fc4a8c8113b1bf78258845ed06662a07996a6af (patch) | |
tree | db055018db2d6190438b451444f337215a76917f /include/com | |
parent | 7ea8046c741c8b7b608f26e312cc5f1056752c09 (diff) |
Add support for cppu::UnoType<void>
Change-Id: I88259ffaffc73979c240721d2db166c79d3085f1
Diffstat (limited to 'include/com')
-rw-r--r-- | include/com/sun/star/uno/Type.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/com/sun/star/uno/Type.hxx b/include/com/sun/star/uno/Type.hxx index 5eab3fecda07..6b22224c4e4a 100644 --- a/include/com/sun/star/uno/Type.hxx +++ b/include/com/sun/star/uno/Type.hxx @@ -100,11 +100,11 @@ inline const ::com::sun::star::uno::Type & SAL_CALL getCppuType( SAL_UNUSED_PARA inline const ::com::sun::star::uno::Type & SAL_CALL getCppuVoidType() { - return ::cppu::UnoType< ::cppu::UnoVoidType >::get(); + return ::cppu::UnoType<void>::get(); } inline const ::com::sun::star::uno::Type & SAL_CALL getVoidCppuType() { - return ::cppu::UnoType< ::cppu::UnoVoidType >::get(); + return ::cppu::UnoType<void>::get(); } inline const ::com::sun::star::uno::Type & SAL_CALL getCppuBooleanType() |