diff --git a/src/buf_encoder.rs b/src/buf_encoder.rs index c643c2f..97ab8a6 100644 --- a/src/buf_encoder.rs +++ b/src/buf_encoder.rs @@ -49,7 +49,6 @@ impl BufEncoder { /// Creates an empty `BufEncoder` that will encode bytes to hex characters in the given case. #[inline] - #[allow(clippy::let_unit_value)] // Allow the unit value of the const check pub fn new(case: Case) -> Self { let () = Self::_CHECK_EVEN_CAPACITY; BufEncoder { buf: ArrayString::new(), table: case.table() }