loplugin:redundantcast: reinterpret_cast to void*

Change-Id: I947b49cfb15f0e7d6ddfaae386656c70e4bd48ba
This commit is contained in:
Stephan Bergmann
2015-05-12 18:27:37 +02:00
parent 4e871a9b22
commit 0bfc98e63b
10 changed files with 59 additions and 46 deletions

View File

@@ -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);
}}