Skip to content

Commit fdce50f

Browse files
author
Daniel Kroening
committed
stream output optimization
1 parent c38bd43 commit fdce50f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/goto-symex/show_vcc.cpp

Lines changed: 2 additions & 2 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();

0 commit comments

Comments
 (0)