3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 09:05:31 +00:00

misc warnings

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2021-07-31 13:01:02 -07:00
parent ada873631e
commit b723e1093b
4 changed files with 8 additions and 8 deletions

View file

@ -247,7 +247,7 @@ bool is_zk_const (const app *a, int &n) {
}
bool sk_lt_proc::operator()(const app *a1, const app *a2) {
if (a1 == a2) return false;
int n1, n2;
int n1 = 0, n2 = 0;
bool z1, z2;
z1 = is_zk_const(a1, n1);
z2 = is_zk_const(a2, n2);