mirror of
https://github.com/Z3Prover/z3
synced 2025-08-02 17:30:23 +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
|
@ -1572,7 +1572,7 @@ public:
|
|||
}
|
||||
|
||||
final_check_status eval_power(expr* e) {
|
||||
expr* x, * y;
|
||||
expr* x = nullptr, * y = nullptr;
|
||||
rational r;
|
||||
VERIFY(a.is_power(e, x, y));
|
||||
if (a.is_numeral(x, r) && r == 0 && a.is_numeral(y, r) && r == 0)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue