mirror of
https://github.com/Z3Prover/z3
synced 2025-04-16 22:05:36 +00:00
fix -Wsign-compare (len can never become negative anyway)
This commit is contained in:
parent
28c675f56e
commit
c2ebbc9210
|
@ -83,7 +83,7 @@ namespace sat {
|
|||
char digits[20]; // enough for storing unsigned
|
||||
char* lastd = digits + sizeof(digits);
|
||||
|
||||
int len = 0;
|
||||
unsigned len = 0;
|
||||
if (st == status::deleted) {
|
||||
buffer[0] = 'd';
|
||||
buffer[1] = ' ';
|
||||
|
|
Loading…
Reference in a new issue