3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-02 09:20:22 +00:00

fix un-intialized variable warnings

This commit is contained in:
Nikolaj Bjorner 2024-09-30 15:08:33 -07:00
parent 2c94a3a1b3
commit 551cc53a2f
8 changed files with 10 additions and 10 deletions

View file

@ -360,7 +360,7 @@ namespace smt {
for (unsigned i = 1; i < unsat_row.size(); ++i) {
numeral c(unsat_row[i]);
if (!c.is_zero()) {
theory_var var;
theory_var var = null_theory_var;
if (!index2var.find(i, var)) {
UNREACHABLE();
}