mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
fix compiler warnings reported by Robert White
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
7fd6549a40
commit
1db7e0a149
7 changed files with 25 additions and 24 deletions
|
@ -380,7 +380,7 @@ Notes:
|
|||
literal y2 = min(as[0], bs[0]);
|
||||
out.push_back(y1);
|
||||
out.push_back(y2);
|
||||
cmp(as[0], bs[0], y1, y2);
|
||||
psort_nw<psort_expr>::cmp(as[0], bs[0], y1, y2);
|
||||
}
|
||||
else if (a == 0) {
|
||||
out.append(b, bs);
|
||||
|
@ -455,7 +455,7 @@ Notes:
|
|||
for (unsigned i = 0; i < sz; ++i) {
|
||||
literal y1 = max(as[i+1],bs[i]);
|
||||
literal y2 = min(as[i+1],bs[i]);
|
||||
cmp(as[i+1], bs[i], y1, y2);
|
||||
psort_nw<psort_expr>::cmp(as[i+1], bs[i], y1, y2);
|
||||
out.push_back(y1);
|
||||
out.push_back(y2);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue