fix(library/normalize): unitialized variable

This commit is contained in:
Leonardo de Moura 2014-12-31 19:03:36 -08:00
parent 761810f350
commit 58f052b1bb

View file

@ -75,7 +75,7 @@ public:
normalize_fn(type_checker & tc, std::function<bool(expr const &)> const & fn): // NOLINT
m_tc(tc), m_ngen(m_tc.mk_ngen()),
m_pred(fn) {}
m_pred(fn), m_save_cnstrs(true) {}
expr operator()(expr const & e) {
m_cnstrs = constraint_seq();