Skip to content

Commit 7711933

Browse files
author
Daniel Kroening
authored
Merge pull request #2162 from tautschnig/fix-format
Fix duplicate output of id in format()
2 parents 7d91638 + 7e09d5f commit 7711933

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)