mirror of
https://github.com/Z3Prover/z3
synced 2025-07-25 21:57:00 +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
|
@ -207,7 +207,7 @@ namespace arith {
|
|||
|
||||
bool solver::check_bv_term(app* n) {
|
||||
unsigned sz;
|
||||
expr* _x, * _y;
|
||||
expr* _x = nullptr, * _y = nullptr;
|
||||
if (!ctx.is_relevant(expr2enode(n)))
|
||||
return true;
|
||||
expr_ref vx(m), vy(m),vn(m);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue