Skip to content

Commit

Permalink
Merge pull request #2162 from tautschnig/fix-format
Browse files Browse the repository at this point in the history
Fix duplicate output of id in format()
  • Loading branch information
Daniel Kroening authored May 7, 2018
2 parents 7d91638 + 7e09d5f commit 7711933
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/format_expr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ std::ostream &format_rec(

if(expr.has_operands())
{
os << id << '(';
os << '(';
bool first = true;

for(const auto &op : expr.operands())
Expand Down

0 comments on commit 7711933

Please sign in to comment.