chore(frontends/lean/elaborator): replace ... withe exception

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2014-07-14 16:37:55 +01:00
parent 2e6184a721
commit 91e8f0b8fa

View file

@ -355,7 +355,7 @@ class elaborator {
m_tactic_result = tac(m_elab.m_env, m_elab.m_ios, ps);
if (auto cs = get_next_tactic_result())
return cs;
} catch (...) {}
} catch (exception &) {}
}
return optional<constraints>();
}