summaryrefslogtreecommitdiff
path: root/bridges
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-03-24 17:11:44 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-03-24 17:11:44 +0100
commitd7ebb703427a17d12e22101a1277e9a824c18123 (patch)
tree7f145d1fe0f78d104a4b245bfee8d3b4b32d99da /bridges
parentf7eab4dbb8046103df08176e11e0844371e0d20a (diff)
loplugin:redundantcast
Change-Id: Ia7701e84ea87588abb526ad82da659114474bee5
Diffstat (limited to 'bridges')
-rw-r--r--bridges/source/cpp_uno/msvc_win32_x86-64/cpp2uno.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/bridges/source/cpp_uno/msvc_win32_x86-64/cpp2uno.cxx b/bridges/source/cpp_uno/msvc_win32_x86-64/cpp2uno.cxx
index fee1483180cf..864f80d7a615 100644
--- a/bridges/source/cpp_uno/msvc_win32_x86-64/cpp2uno.cxx
+++ b/bridges/source/cpp_uno/msvc_win32_x86-64/cpp2uno.cxx
@@ -207,7 +207,7 @@ static inline typelib_TypeClass cpp2uno_call(
}
if ( pReturnTD )
{
- typelib_TypeClass eRet = (typelib_TypeClass)pReturnTD->eTypeClass;
+ typelib_TypeClass eRet = pReturnTD->eTypeClass;
TYPELIB_DANGER_RELEASE( pReturnTD );
return eRet;
}