diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-05-12 18:27:37 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-05-12 18:27:54 +0200 |
commit | 0bfc98e63b062bc847fd0f37308c050ac618c56f (patch) | |
tree | 0b20885e7bb84fcc7932e5b6488a6efec1716ade /cppu/source/helper | |
parent | 4e871a9b225c0d21ed703b45400b4e8476214bce (diff) |
loplugin:redundantcast: reinterpret_cast to void*
Change-Id: I947b49cfb15f0e7d6ddfaae386656c70e4bd48ba
Diffstat (limited to 'cppu/source/helper')
-rw-r--r-- | cppu/source/helper/purpenv/helper_purpenv_Proxy.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cppu/source/helper/purpenv/helper_purpenv_Proxy.cxx b/cppu/source/helper/purpenv/helper_purpenv_Proxy.cxx index e366b9478d58..90ee6b052a6f 100644 --- a/cppu/source/helper/purpenv/helper_purpenv_Proxy.cxx +++ b/cppu/source/helper/purpenv/helper_purpenv_Proxy.cxx @@ -242,7 +242,7 @@ extern "C" { static void s_releaseAndRevoke_v(va_list * pParam) uno_ExtEnvironment * pEnv = va_arg(*pParam, uno_ExtEnvironment *); uno_Interface * pUnoI = va_arg(*pParam, uno_Interface *); - pEnv->revokeInterface(pEnv, reinterpret_cast<void *>(pUnoI)); + pEnv->revokeInterface(pEnv, pUnoI); pUnoI->release(pUnoI); }} |