- Modified ::findTerminator to look at all nodes.
This commit is contained in:
Paul Beckingham 2014-08-17 12:08:56 -04:00
parent fbf8550274
commit 4ef7d9c7fb

View file

@ -381,7 +381,7 @@ void Parser::findTerminator ()
bool action = false;
std::vector <Tree*> nodes;
collect (nodes, false);
collect (nodes, true);
std::vector <Tree*>::iterator i;
for (i = nodes.begin (); i != nodes.end (); ++i)
{