fix(frontends/lean/dependencies): warning message
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
f39b2eb70f
commit
466dd11d1b
1 changed files with 4 additions and 2 deletions
|
@ -20,10 +20,12 @@ void display_deps(environment const & env, std::ostream & out, char const * fnam
|
||||||
scanner s(in, fname);
|
scanner s(in, fname);
|
||||||
bool import_args = false;
|
bool import_args = false;
|
||||||
while (true) {
|
while (true) {
|
||||||
scanner::token_kind t;
|
scanner::token_kind t = scanner::token_kind::Identifier;
|
||||||
try {
|
try {
|
||||||
t = s.scan(env);
|
t = s.scan(env);
|
||||||
} catch (exception &) {}
|
} catch (exception &) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
if (t == scanner::token_kind::Eof) {
|
if (t == scanner::token_kind::Eof) {
|
||||||
return;
|
return;
|
||||||
} else if (t == scanner::token_kind::CommandKeyword && s.get_token_info().value() == import) {
|
} else if (t == scanner::token_kind::CommandKeyword && s.get_token_info().value() == import) {
|
||||||
|
|
Loading…
Reference in a new issue