update decompiler precedence

This commit is contained in:
xensik
2021-05-13 18:36:48 +02:00
parent 4080dcdc30
commit 3cc43c7ae9
8 changed files with 15 additions and 15 deletions

View File

@ -949,7 +949,7 @@ struct node_expr_paren : public node
auto print() -> std::string override
{
return "(" + expr.as_node->print() + ")";
return "( " + expr.as_node->print() + " )";
}
friend bool operator==(const node_expr_paren& lhs, const node_expr_paren& rhs)