- ::getLimit now scans all nodes.
This commit is contained in:
Paul Beckingham 2014-08-23 16:01:58 -04:00
parent bc17bf7cbe
commit 711ababc76

View file

@ -792,7 +792,7 @@ const std::vector <std::string> Parser::getWords () const
std::string Parser::getLimit () const
{
std::vector <Tree*> nodes;
collect (nodes);
collect (nodes, collectAll);
std::vector <Tree*>::iterator i;
for (i = nodes.begin (); i != nodes.end (); ++i)
{