mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Clippy warnings (#305)
This commit is contained in:
parent
68e158d877
commit
661c5ea1fa
62 changed files with 103 additions and 110 deletions
|
@ -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());
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue