From c4f3fba11736c0a07c4d596f7b824e3ceebda51e Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Mon, 11 May 2015 12:49:51 +0200 Subject: [PATCH] loplugin:cstylecast: nop between pointer types of exactly same spelling Change-Id: I3cf8c36fec3110b6c26f7b3cd550f8428963cc65 --- idl/source/prj/globals.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/idl/source/prj/globals.cxx b/idl/source/prj/globals.cxx index 6786cbe82bfe..38b2d167edb4 100644 --- a/idl/source/prj/globals.cxx +++ b/idl/source/prj/globals.cxx @@ -48,7 +48,7 @@ inline SvStringHashEntry * INS( const OString& rName ) { sal_uInt32 nIdx; IDLAPP->pHashTable->Insert( rName, &nIdx ); - return (SvStringHashEntry * )IDLAPP->pHashTable->Get( nIdx ); + return IDLAPP->pHashTable->Get( nIdx ); } #define A_ENTRY( Name ) , MM_##Name( INS( #Name ) )