Kaydet (Commit) 2931e0fa authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Reduce to static_cast any reinterpret_cast from void pointers

Change-Id: I8fc20c94ba0233a91b63ff35f91dc9c8b51a2aba
üst efb254ca
......@@ -960,7 +960,7 @@ XMLFile *SimpleXMLParser::Execute( const OString &rFileName, XMLFile* pXMLFileIn
else
m_aErrorInformation.m_sMessage = "XML-File parsed successfully";
if (!XML_Parse(m_aParser, reinterpret_cast< char * >(p), s, true))
if (!XML_Parse(m_aParser, static_cast< char * >(p), s, true))
{
m_aErrorInformation.m_eCode = XML_GetErrorCode( m_aParser );
m_aErrorInformation.m_nLine = XML_GetErrorLineNumber( m_aParser );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment