Skip to content

Commit

Permalink
don't print to stderr with every expression parse
Browse files Browse the repository at this point in the history
  • Loading branch information
hobu committed Oct 1, 2020
1 parent d46846c commit 4a00e56
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion filters/private/expr/AssignStatement.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ inline StatusWithReason fromString(const std::string& from,
expr::Lexer lexer(from);
expr::AssignParser parser(lexer);
bool ok = parser.statement(stmt) && parser.checkEnd();
std::cerr << "Parser error = " << parser.error() << "!\n";
return { ok ? 0 : -1, parser.error() };
}

Expand Down

0 comments on commit 4a00e56

Please sign in to comment.