- Removed diagnostic output.
This commit is contained in:
Paul Beckingham 2014-05-21 23:53:39 -04:00
parent ea00f20425
commit 213f889a55

View file

@ -1385,16 +1385,6 @@ bool A3t::insertAnd ()
(! (*prev)->hasTag ("OP") || (*prev)->attribute ("raw") == ")") &&
(! (*sub)->hasTag ("OP") || (*sub)->attribute ("raw") == "("))
{
std::cout << "# missingOperator '"
<< (*prev)->attribute ("raw")
<< " "
<< (*sub)->attribute ("raw")
<< "' --> '"
<< (*prev)->attribute ("raw")
<< " and "
<< (*sub)->attribute ("raw")
<< "'\n";
Tree* branch = new Tree ("argOp");
branch->attribute ("raw", "and");
branch->tag ("OP");
@ -1413,16 +1403,6 @@ bool A3t::insertAnd ()
(! (*prev)->hasTag ("OP") || (*prev)->attribute ("raw") == ")") &&
(! (*i)->hasTag ("OP") || (*i)->attribute ("raw") == "("))
{
std::cout << "# missingOperator '"
<< (*prev)->attribute ("raw")
<< " "
<< (*i)->attribute ("raw")
<< "' --> '"
<< (*prev)->attribute ("raw")
<< " and "
<< (*i)->attribute ("raw")
<< "'\n";
Tree* branch = new Tree ("argOp");
branch->attribute ("raw", "and");
branch->tag ("OP");