3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-27 08:28:44 +00:00

remove sources for unused variable warnings

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2016-12-21 09:54:45 -08:00
parent d9227b95ea
commit 8d18fd075e
12 changed files with 20 additions and 25 deletions

View file

@ -96,8 +96,8 @@ namespace sat {
}
// the first two literals must be watched.
SASSERT(contains_watched(s.get_wlist(~c[0]), c, s.get_offset(c)));
SASSERT(contains_watched(s.get_wlist(~c[1]), c, s.get_offset(c)));
VERIFY(contains_watched(s.get_wlist(~c[0]), c, s.get_offset(c)));
VERIFY(contains_watched(s.get_wlist(~c[1]), c, s.get_offset(c)));
}
return true;
}