- Code cleanup of ::findTerminator.
This commit is contained in:
Paul Beckingham 2014-08-24 13:23:19 -04:00
parent 0a4dcc1a21
commit ce914a31f9

View file

@ -355,7 +355,6 @@ void Parser::findBinary ()
// all args in the raw state.
void Parser::findTerminator ()
{
context.debug ("Parser::findTerminator");
bool found = false;
std::vector <Tree*> prune;
@ -387,9 +386,6 @@ void Parser::findTerminator ()
// Prune branches outside the loop.
for (i = prune.begin (); i != prune.end (); ++i)
(*i)->removeAllBranches ();
if (prune.size ())
context.debug (_tree->dump ());
}
////////////////////////////////////////////////////////////////////////////////