3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-13 12:28:44 +00:00

fix debug build

This commit is contained in:
Nuno Lopes 2019-02-19 10:54:41 +00:00
parent 8c2584bcf7
commit 8e4ef19f45

View file

@ -92,7 +92,7 @@ class elim_small_bv_tactic : public tactic {
TRACE("elim_small_bv", tout << "substitution: " << std::endl;
for (unsigned k = 0; k < substitution.size(); k++) {
expr * se = substitution[k].get();
expr * se = substitution[k];
tout << k << " = ";
if (se == 0) tout << "0";
else tout << mk_ismt2_pp(se, m);