mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 01:25:31 +00:00
fix -Wsign-compare (len can never become negative anyway)
This commit is contained in:
parent
28c675f56e
commit
c2ebbc9210
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue