Fix -Wshadow warning
This commit is contained in:
parent
58611c8702
commit
3860b5076f
@ -6963,7 +6963,7 @@ namespace pugi
|
||||
if (other_first_child)
|
||||
{
|
||||
size_t other_children = 0;
|
||||
for (xml_node_struct* child = other_first_child; child; child = child->next_sibling)
|
||||
for (xml_node_struct* node = other_first_child; node; node = node->next_sibling)
|
||||
other_children++;
|
||||
|
||||
// in compact mode, each pointer assignment could result in a hash table request
|
||||
|
Loading…
Reference in New Issue
Block a user