3
0
Fork 0
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:
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

@ -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);