summaryrefslogtreecommitdiff
path: root/idl
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-05-11 12:49:51 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-05-11 12:49:51 +0200
commitc4f3fba11736c0a07c4d596f7b824e3ceebda51e (patch)
treec8dc66311a6b3110dcdb7592d75a41aa7b44e2fd /idl
parent35f8f293956bedc52d9aac4c25d5672541bfb07e (diff)
loplugin:cstylecast: nop between pointer types of exactly same spelling
Change-Id: I3cf8c36fec3110b6c26f7b3cd550f8428963cc65
Diffstat (limited to 'idl')
-rw-r--r--idl/source/prj/globals.cxx2
1 files changed, 1 insertions, 1 deletions
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 ) )