Skip to content

Commit 88c8d5f

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

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();
@@ -91,7 +91,7 @@ void show_vcc_plain(
9191
std::size_t count = 1;
9292
for(const auto &disjunct : disjuncts)
9393
{
94-
out << "{" << count << "} " << format(disjunct) << "\n";
94+
out << '{' << count << "} " << format(disjunct) << '\n';
9595
count++;
9696
}
9797
}

0 commit comments

Comments
 (0)