3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 01:25:31 +00:00

fix a few warnings

This commit is contained in:
Nuno Lopes 2019-10-09 14:09:33 +01:00
parent 4192c81fae
commit bc50b6bea2
5 changed files with 14 additions and 18 deletions

View file

@ -986,6 +986,7 @@ namespace nlsat {
bool check_already_added() const {
for (bool b : m_already_added_literal) {
(void)b;
SASSERT(!b);
}
return true;

View file

@ -1685,6 +1685,7 @@ namespace nlsat {
bool check_marks() {
for (unsigned m : m_marks) {
(void)m;
SASSERT(m == 0);
}
return true;