fix clippy warnings
[nihav.git] / nihav-rad / src / lib.rs
index d407fa7ae5894cc0ecedecc0e9bd8ce482ba12f1..f7bce33a9fee072d5824da2e4e245d7631778770 100644 (file)
@@ -5,12 +5,15 @@ extern crate nihav_codec_support;
 #[cfg(feature="decoders")]
 #[allow(clippy::cast_lossless)]
 #[allow(clippy::collapsible_if)]
+#[allow(clippy::collapsible_else_if)]
 #[allow(clippy::excessive_precision)]
 #[allow(clippy::identity_op)]
 #[allow(clippy::needless_range_loop)]
+#[allow(clippy::needless_late_init)]
 #[allow(clippy::too_many_arguments)]
 #[allow(clippy::unreadable_literal)]
 #[allow(clippy::useless_let_if_seq)]
+#[allow(clippy::upper_case_acronyms)]
 mod codecs;
 #[cfg(feature="decoders")]
 pub use crate::codecs::rad_register_all_decoders;