0
0
mirror of https://github.com/zeux/pugixml.git synced 2024-12-27 13:33:17 +08:00

Fixed find_element

git-svn-id: http://pugixml.googlecode.com/svn/trunk@72 99668b35-9821-0410-8761-19e4c4f06640
This commit is contained in:
arseny.kapoulkine 2007-02-21 22:43:29 +00:00
parent b0461a939a
commit faf69388f0

View File

@ -1723,7 +1723,7 @@ namespace pugi
if (node.first_child())
{
xml_node found = node.find_element(pred);
xml_node found = node.find_node(pred);
if (found) return found;
}
}