fix clippy warnings
[nihav.git] / nihav-indeo / src / lib.rs
index 22ef878a5e58032d4b683e7dee51bfc5eefbd6bf..a89bd260638f957868ba83a74b14cb7983c7e8bb 100644 (file)
@@ -3,11 +3,15 @@ extern crate nihav_core;
 extern crate nihav_codec_support;
 
 #[allow(clippy::collapsible_if)]
+#[allow(clippy::collapsible_else_if)]
 #[allow(clippy::identity_op)]
 #[allow(clippy::needless_range_loop)]
+#[allow(clippy::needless_late_init)]
 #[allow(clippy::too_many_arguments)]
 #[allow(clippy::useless_let_if_seq)]
 #[allow(clippy::verbose_bit_mask)]
+#[allow(clippy::upper_case_acronyms)]
+#[allow(clippy::manual_range_contains)]
 mod codecs;
 
 pub use crate::codecs::indeo_register_all_decoders;