fix(frontends/lean/dependencies): compilation warning

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2014-06-29 09:55:30 -07:00
parent ffa175009b
commit 1f0171cd57

View file

@ -22,11 +22,11 @@ bool consume_until_import(environment const & env, scanner & s) {
while (true) {
try {
t = s.scan(env);
if (t == scanner::token_kind::Eof)
return false;
if (t == scanner::token_kind::CommandKeyword && s.get_token_info().value() == import)
return true;
} catch (...) {}
if (t == scanner::token_kind::Eof)
return false;
if (t == scanner::token_kind::CommandKeyword && s.get_token_info().value() == import)
return true;
}
}