summaryrefslogtreecommitdiff
path: root/bridges
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-03-23 19:29:04 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-03-23 19:29:04 +0100
commit3d53ec9b2d1c4514adf90ea68915f20ce4d5bc81 (patch)
tree25883476f84abdfe86b226ed235b399fe8e66448 /bridges
parenteb0218315aa4f564233e105a2cd1e0496a3f409e (diff)
loplugin:redundantcast
Change-Id: I1bc2fbe98f24b173cfda4661f812575a2008c792
Diffstat (limited to 'bridges')
-rw-r--r--bridges/source/cpp_uno/gcc3_macosx_x86-64/cpp2uno.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/bridges/source/cpp_uno/gcc3_macosx_x86-64/cpp2uno.cxx b/bridges/source/cpp_uno/gcc3_macosx_x86-64/cpp2uno.cxx
index e16b2f12b437..e639e0c1167f 100644
--- a/bridges/source/cpp_uno/gcc3_macosx_x86-64/cpp2uno.cxx
+++ b/bridges/source/cpp_uno/gcc3_macosx_x86-64/cpp2uno.cxx
@@ -241,7 +241,7 @@ static typelib_TypeClass cpp2uno_call(
}
if ( pReturnTypeDescr )
{
- typelib_TypeClass eRet = (typelib_TypeClass)pReturnTypeDescr->eTypeClass;
+ typelib_TypeClass eRet = pReturnTypeDescr->eTypeClass;
TYPELIB_DANGER_RELEASE( pReturnTypeDescr );
return eRet;
}