Fix warning produced by clang++
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
57c0c69872
commit
00bee9c96e
1 changed files with 1 additions and 1 deletions
|
@ -928,7 +928,7 @@ class pp_fn {
|
||||||
lean_assert(is_choice(e));
|
lean_assert(is_choice(e));
|
||||||
unsigned num = get_num_choices(e);
|
unsigned num = get_num_choices(e);
|
||||||
format r_format;
|
format r_format;
|
||||||
unsigned r_weight;
|
unsigned r_weight = 0;
|
||||||
for (unsigned i = 0; i < num; i++) {
|
for (unsigned i = 0; i < num; i++) {
|
||||||
if (i > 0)
|
if (i > 0)
|
||||||
r_format += format{space(), format("|"), line()};
|
r_format += format{space(), format("|"), line()};
|
||||||
|
|
Loading…
Reference in a new issue