We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c38bd43 commit 88c8d5fCopy full SHA for 88c8d5f
src/goto-symex/show_vcc.cpp
@@ -46,10 +46,10 @@ void show_vcc_plain(
46
out << '\n';
47
48
if(s_it->source.pc->source_location.is_not_nil())
49
- out << s_it->source.pc->source_location << "\n";
+ out << s_it->source.pc->source_location << '\n';
50
51
if(s_it->comment != "")
52
- out << s_it->comment << "\n";
+ out << s_it->comment << '\n';
53
54
symex_target_equationt::SSA_stepst::const_iterator p_it =
55
equation.SSA_steps.begin();
@@ -91,7 +91,7 @@ void show_vcc_plain(
91
std::size_t count = 1;
92
for(const auto &disjunct : disjuncts)
93
{
94
- out << "{" << count << "} " << format(disjunct) << "\n";
+ out << '{' << count << "} " << format(disjunct) << '\n';
95
count++;
96
}
97
0 commit comments