Fix -Wsign-compare warning
PiperOrigin-RevId: 547529709
This commit is contained in:
@@ -1289,7 +1289,7 @@ std::pair<const uint8_t*, ptrdiff_t> DecompressBranchless(
|
|||||||
DeferMemCopy(&deferred_src, &deferred_length, from, len);
|
DeferMemCopy(&deferred_src, &deferred_length, from, len);
|
||||||
}
|
}
|
||||||
} while (ip < ip_limit_min_slop &&
|
} while (ip < ip_limit_min_slop &&
|
||||||
(op + deferred_length) < op_limit_min_slop);
|
static_cast<ptrdiff_t>(op + deferred_length) < op_limit_min_slop);
|
||||||
exit:
|
exit:
|
||||||
ip--;
|
ip--;
|
||||||
assert(ip <= ip_limit);
|
assert(ip <= ip_limit);
|
||||||
|
|||||||
Reference in New Issue
Block a user