Skip to content

Commit 0f557de

Browse files
author
Daniel Kroening
committed
stream output optimization
1 parent 830e9ff commit 0f557de

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/goto-symex/show_vcc.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ void show_vcc_plain(
4646
out << '\n';
4747

4848
if(s_it->source.pc->source_location.is_not_nil())
49-
out << s_it->source.pc->source_location << "\n";
49+
out << s_it->source.pc->source_location << '\n';
5050

5151
if(s_it->comment != "")
52-
out << s_it->comment << "\n";
52+
out << s_it->comment << '\n';
5353

5454
symex_target_equationt::SSA_stepst::const_iterator p_it =
5555
equation.SSA_steps.begin();
@@ -80,7 +80,7 @@ void show_vcc_plain(
8080
out << u8"\u2500";
8181
out << '\n';
8282

83-
out << '{' << 1 << "} " << format(s_it->cond_expr) << '\n';
83+
out << "{1} " << format(s_it->cond_expr) << '\n';
8484
}
8585
}
8686

0 commit comments

Comments
 (0)