Suppress remaining clippy lints in udiv128

This commit is contained in:
David Tolnay 2021-12-11 00:45:50 -08:00
parent fb7a827f32
commit 63d5944d90
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82
1 changed files with 4 additions and 1 deletions

View File

@ -59,11 +59,14 @@
#![doc(html_root_url = "https://docs.rs/itoa/0.4.8")]
#![cfg_attr(not(feature = "std"), no_std)]
#![allow(
clippy::cast_lossless,
clippy::cast_possible_truncation,
clippy::expl_impl_clone_on_copy,
clippy::missing_errors_doc,
clippy::must_use_candidate,
clippy::semicolon_if_nothing_returned, // https://github.com/rust-lang/rust-clippy/issues/7768
clippy::transmute_ptr_to_ptr
clippy::transmute_ptr_to_ptr,
clippy::unreadable_literal
)]
#[cfg(feature = "i128")]