Prefer prefix ++ operator for non-primitive types
parent
8e90bf8381
commit
f1e0c460ed
|
@ -888,8 +888,8 @@ nl_clean_loop:
|
||||||
// and try to find them in another top nodes.
|
// and try to find them in another top nodes.
|
||||||
std::list<aiNode*>::const_iterator next_it = nl_it;
|
std::list<aiNode*>::const_iterator next_it = nl_it;
|
||||||
|
|
||||||
next_it++;
|
++next_it;
|
||||||
for(; next_it != node_list.end(); next_it++)
|
for(; next_it != node_list.end(); ++next_it)
|
||||||
{
|
{
|
||||||
if((*next_it)->FindNode((*nl_it)->mName) != nullptr)
|
if((*next_it)->FindNode((*nl_it)->mName) != nullptr)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue