Skip to content

Commit 7e09d5f

Browse files
committed
Fix duplicate output of id in format()
1 parent 88db26f commit 7e09d5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util/format_expr.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ std::ostream &format_rec(
209209

210210
if(expr.has_operands())
211211
{
212-
os << id << '(';
212+
os << '(';
213213
bool first = true;
214214

215215
for(const auto &op : expr.operands())

0 commit comments

Comments
 (0)