fix(library/defeq_canonizer): typo

This commit is contained in:
Leonardo de Moura 2016-06-24 14:02:26 -07:00
parent 085c52938e
commit feb9f13d5f

View file

@ -81,7 +81,7 @@ struct defeq_canonize_fn {
void insert_M(name const & h, expr const & e) {
list<expr> const * lst = m_cache.m_M.find(h);
if (*lst) {
if (lst) {
m_cache.m_M.insert(h, cons(e, *lst));
} else {
m_cache.m_M.insert(h, to_list(e));