fix(msvc): remove another \uXX char that was causing an infinite loop
This commit is contained in:
parent
977e11f9be
commit
c43ebd8bf7
1 changed files with 1 additions and 1 deletions
|
|
@ -124,7 +124,7 @@ bool pp_using_anonymous_constructor(environment const & env, name const & n) {
|
|||
}
|
||||
|
||||
void initialize_pp() {
|
||||
g_ellipsis_n_fmt = new format(highlight(format("\u2026")));
|
||||
g_ellipsis_n_fmt = new format(highlight(format("\xE2\x80\xA6"))); //\u2026
|
||||
g_ellipsis_fmt = new format(highlight(format("...")));
|
||||
g_placeholder_fmt = new format(highlight(format("_")));
|
||||
g_lambda_n_fmt = new format(highlight_keyword(format("\xCE\xBB"))); //\u03BB
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue