Skip to content

Commit f2fa169

Browse files
author
Daniel Kroening
committed
draw Gentzen turnstile using Unicode
1 parent 963b866 commit f2fa169

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/cbmc/show_vcc.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,10 @@ void bmct::show_vcc_plain(std::ostream &out)
6666
}
6767
}
6868

69-
out << "|--------------------------" << "\n";
69+
// Unicode equivalent of "|--------------------------"
70+
out << u8"\u251c";
71+
for(unsigned i=0; i<26; i++) out << u8"\u2500";
72+
out << '\n';
7073

7174
std::string string_value=
7275
from_expr(ns, s_it->source.pc->function, s_it->cond_expr);

0 commit comments

Comments
 (0)