0
0
mirror of https://github.com/zeux/pugixml.git synced 2025-01-14 09:57:57 +08:00

Minor traverse() refactoring

git-svn-id: http://pugixml.googlecode.com/svn/trunk@561 99668b35-9821-0410-8761-19e4c4f06640
This commit is contained in:
arseny.kapoulkine 2010-07-06 12:21:38 +00:00
parent fa16efd438
commit 57564791a3

View File

@ -3981,9 +3981,9 @@ namespace pugi
while (cur && cur != *this);
}
if (!walker.end(*this)) return false;
return true;
assert(walker._depth == -1);
return walker.end(*this);
}
unsigned int xml_node::document_order() const