From 7b8f64cfecf0eac97bca3146302394fd93af4bd8 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Mon, 11 May 2015 12:50:00 +0200 Subject: loplugin:cstylecast: nop between pointer types of exactly same spelling Change-Id: Ia2d6f3e05398395af5e12ce9c1b35484f06a13b4 --- l10ntools/source/xmlparse.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'l10ntools') diff --git a/l10ntools/source/xmlparse.cxx b/l10ntools/source/xmlparse.cxx index 13538c175a03..0171db926342 100644 --- a/l10ntools/source/xmlparse.cxx +++ b/l10ntools/source/xmlparse.cxx @@ -869,7 +869,7 @@ void SimpleXMLParser::DefaultHandler( void SimpleXMLParser::StartElement( const XML_Char *name, const XML_Char **atts ) { - XMLElement *pElement = new XMLElement( OString(name), ( XMLParentNode * ) m_pCurNode ); + XMLElement *pElement = new XMLElement( OString(name), m_pCurNode ); m_pCurNode = pElement; m_pCurData = NULL; -- cgit