mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 05:17:39 +03:00
Clippy fixes (#503)
This commit is contained in:
parent
4d4ab811bd
commit
5b11a3e30e
8 changed files with 12 additions and 17 deletions
|
@ -1,9 +1,4 @@
|
|||
#![deny(
|
||||
rust_2018_idioms,
|
||||
warnings,
|
||||
unreachable_pub,
|
||||
missing_debug_implementations
|
||||
)]
|
||||
#![deny(warnings, unreachable_pub, missing_debug_implementations)]
|
||||
#![warn(nonstandard_style, future_incompatible)]
|
||||
|
||||
//! Resource path matching library.
|
||||
|
|
|
@ -63,5 +63,5 @@ fn from_hex(v: u8) -> Option<u8> {
|
|||
|
||||
#[inline]
|
||||
fn restore_ch(d1: u8, d2: u8) -> Option<u8> {
|
||||
from_hex(d1).and_then(|d1| from_hex(d2).map(move |d2| d1 << 4 | d2))
|
||||
from_hex(d1).and_then(|d1| from_hex(d2).map(move |d2| (d1 << 4) | d2))
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue