fix(kernel/formatter): add missing parentheses
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
a70f8dd98e
commit
ac03b3204a
1 changed files with 4 additions and 1 deletions
|
@ -164,7 +164,10 @@ struct print_expr_fn {
|
|||
bool first = true;
|
||||
for (auto l : ls) {
|
||||
if (first) first = false; else out() << " ";
|
||||
out() << l;
|
||||
if (is_max(l) || is_imax(l))
|
||||
out() << "(" << l << ")";
|
||||
else
|
||||
out() << l;
|
||||
}
|
||||
out() << "}";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue