- ::getDataLocation needs to scan all nodes.  You'd think I'd learn this by now.
This commit is contained in:
Paul Beckingham 2014-08-24 15:17:14 -04:00
parent ae4a4e01bc
commit c446786d46

View file

@ -537,7 +537,7 @@ void Parser::getDataLocation (Path& data)
data = location;
std::vector <Tree*> nodes;
collect (nodes);
collect (nodes, collectAll);
std::vector <Tree*>::iterator i;
for (i = nodes.begin (); i != nodes.end (); ++i)
{