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:
parent
2c94a3a1b3
commit
551cc53a2f
8 changed files with 10 additions and 10 deletions
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue