chore(frontends/lean/parser): remove 'Skipped' message
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
909b10f515
commit
390a78a8d2
2 changed files with 2 additions and 7 deletions
|
@ -2453,11 +2453,8 @@ class parser::imp {
|
||||||
} else {
|
} else {
|
||||||
r = m_env->import(fname, m_io_state);
|
r = m_env->import(fname, m_io_state);
|
||||||
}
|
}
|
||||||
if (m_verbose) {
|
if (m_verbose && r) {
|
||||||
if (r)
|
regular(m_io_state) << " Imported '" << fname << "'" << endl;
|
||||||
regular(m_io_state) << " Imported '" << fname << "'" << endl;
|
|
||||||
else
|
|
||||||
regular(m_io_state) << " Skipped '" << fname << "'" << endl;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
Set: pp::colors
|
Set: pp::colors
|
||||||
Set: pp::unicode
|
Set: pp::unicode
|
||||||
Imported 'cast'
|
Imported 'cast'
|
||||||
Skipped 'cast'
|
|
||||||
Imported 'cast'
|
Imported 'cast'
|
||||||
Skipped 'cast'
|
|
||||||
@cast : Π (A B : (Type U)), A == B → A → B
|
@cast : Π (A B : (Type U)), A == B → A → B
|
||||||
@cast : Π (A B : (Type U)), A == B → A → B
|
@cast : Π (A B : (Type U)), A == B → A → B
|
||||||
|
|
Loading…
Reference in a new issue