Removed extraneous parentheses.

This commit is contained in:
John Wiegley 2009-01-23 01:09:31 -04:00
parent 5ba81765ea
commit 00fdadedcc

View file

@ -229,10 +229,9 @@ bool expr_t::op_t::print(std::ostream& out, const context_t& context) const
string symbol;
switch (kind) {
case VALUE: {
case VALUE:
as_value().print(out, context.relaxed);
break;
}
case IDENT:
out << as_ident();