File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,8 @@ void show_vcc_plain(
63
63
{
64
64
if (!p_it->ignore )
65
65
{
66
- out << " {-" << count << " } " << format (p_it->cond_expr ) << ' \n ' ;
66
+ out << messaget::faint << " {-" << count << " } " << messaget::reset
67
+ << format (p_it->cond_expr ) << ' \n ' ;
67
68
68
69
#ifdef DEBUG
69
70
out << " GUARD: " << format (p_it->guard ) << ' \n ' ;
@@ -75,10 +76,10 @@ void show_vcc_plain(
75
76
}
76
77
77
78
// Unicode equivalent of "|--------------------------"
78
- out << u8" \u251c " ;
79
+ out << messaget::faint << u8" \u251c " ;
79
80
for (unsigned i = 0 ; i < 26 ; i++)
80
81
out << u8" \u2500 " ;
81
- out << ' \n ' ;
82
+ out << messaget::reset << ' \n ' ;
82
83
83
84
// split property into multiple disjunts, if applicable
84
85
exprt::operandst disjuncts;
@@ -91,7 +92,8 @@ void show_vcc_plain(
91
92
std::size_t count = 1 ;
92
93
for (const auto &disjunct : disjuncts)
93
94
{
94
- out << ' {' << count << " } " << format (disjunct) << ' \n ' ;
95
+ out << messaget::faint << ' {' << count << " } " << messaget::reset
96
+ << format (disjunct) << ' \n ' ;
95
97
count++;
96
98
}
97
99
You can’t perform that action at this time.
0 commit comments