Removed extraneous parentheses.
This commit is contained in:
parent
5ba81765ea
commit
00fdadedcc
1 changed files with 1 additions and 2 deletions
|
|
@ -229,10 +229,9 @@ bool expr_t::op_t::print(std::ostream& out, const context_t& context) const
|
||||||
string symbol;
|
string symbol;
|
||||||
|
|
||||||
switch (kind) {
|
switch (kind) {
|
||||||
case VALUE: {
|
case VALUE:
|
||||||
as_value().print(out, context.relaxed);
|
as_value().print(out, context.relaxed);
|
||||||
break;
|
break;
|
||||||
}
|
|
||||||
|
|
||||||
case IDENT:
|
case IDENT:
|
||||||
out << as_ident();
|
out << as_ident();
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue