Skip to content

Commit 5753611

Browse files
committed
Actually use (unicode) operator_str
1 parent abf0fe3 commit 5753611

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util/format_expr.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ static std::ostream &format_rec(std::ostream &os, const multi_ary_exprt &src)
8888
if(first)
8989
first = false;
9090
else
91-
os << ' ' << src.id() << ' ';
91+
os << ' ' << operator_str << ' ';
9292

9393
const bool need_parentheses = bracket_subexpression(op, src);
9494

0 commit comments

Comments
 (0)