Kaydet (Commit) 4a1eddb6 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:cstylecast: nop between pointer types of exactly same spelling

Change-Id: Ic046e96b395713336cb33ce48a003183f7648d36
üst ad5daefd
...@@ -192,7 +192,7 @@ namespace DOM ...@@ -192,7 +192,7 @@ namespace DOM
xmlStringGetNodeList(m_aAttrPtr->doc, buffer.get()); xmlStringGetNodeList(m_aAttrPtr->doc, buffer.get());
xmlNodePtr tmp = m_aAttrPtr->children; xmlNodePtr tmp = m_aAttrPtr->children;
while (tmp != NULL) { while (tmp != NULL) {
tmp->parent = (xmlNodePtr) m_aNodePtr; tmp->parent = m_aNodePtr;
tmp->doc = m_aAttrPtr->doc; tmp->doc = m_aAttrPtr->doc;
if (tmp->next == NULL) if (tmp->next == NULL)
m_aNodePtr->last = tmp; m_aNodePtr->last = tmp;
......
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