Clippy warnings (#305)

This commit is contained in:
Nikolay Kim 2024-03-06 20:33:20 +06:00
parent 68e158d877
commit 661c5ea1fa
62 changed files with 103 additions and 110 deletions

View file

@ -579,7 +579,7 @@ mod tests {
}
#[test]
#[allow(clippy::needless_borrow)]
#[allow(clippy::needless_borrow, clippy::needless_borrows_for_generic_args)]
fn test_basics() {
let m = HeaderMap::default();
assert!(m.is_empty());

View file

@ -85,6 +85,7 @@ impl HeaderValue {
let mut i = 0;
while i < bytes.len() {
if !is_visible_ascii(bytes[i]) {
#[allow(clippy::out_of_bounds_indexing)]
([] as [u8; 0])[0]; // Invalid header value
}
i += 1;