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 830e9ff commit 0f557deCopy full SHA for 0f557de
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();
@@ -80,7 +80,7 @@ void show_vcc_plain(
80
out << u8"\u2500";
81
82
83
- out << '{' << 1 << "} " << format(s_it->cond_expr) << '\n';
+ out << "{1} " << format(s_it->cond_expr) << '\n';
84
}
85
86
0 commit comments