fix(library/normalize): unitialized variable
This commit is contained in:
parent
761810f350
commit
58f052b1bb
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue