mirror of
https://github.com/Z3Prover/z3
synced 2025-06-05 13:51:23 +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 digits[20]; // enough for storing unsigned
|
||||||
char* lastd = digits + sizeof(digits);
|
char* lastd = digits + sizeof(digits);
|
||||||
|
|
||||||
int len = 0;
|
unsigned len = 0;
|
||||||
if (st == status::deleted) {
|
if (st == status::deleted) {
|
||||||
buffer[0] = 'd';
|
buffer[0] = 'd';
|
||||||
buffer[1] = ' ';
|
buffer[1] = ' ';
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue