indeo: fix some clippy warnings
[nihav.git] / nihav-indeo / src / lib.rs
index ccc359580e9d2da133c0e0a30876df6dbcffa7b4..78bb0608390e96ee3c713ce0ca25f9ce57e76c17 100644 (file)
@@ -1,5 +1,11 @@
 extern crate nihav_core;
 
+#[allow(clippy::collapsible_if)]
+#[allow(clippy::identity_op)]
+#[allow(clippy::needless_range_loop)]
+#[allow(clippy::too_many_arguments)]
+#[allow(clippy::useless_let_if_seq)]
+#[allow(clippy::verbose_bit_mask)]
 pub mod codecs;
 
 #[cfg(test)]