- ::findTerminator needs to scan all nodes.
This commit is contained in:
Paul Beckingham 2014-08-24 12:15:15 -04:00
parent bc3dc1e50e
commit c46f8a4626

View file

@ -367,7 +367,7 @@ void Parser::findTerminator ()
std::vector <Tree*> prune;
std::vector <Tree*> nodes;
collect (nodes, collectTerminated);
collect (nodes, collectAll);
std::vector <Tree*>::iterator i;
for (i = nodes.begin (); i != nodes.end (); ++i)
{