diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2020-09-10 12:26:29 +0200 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2020-09-10 14:12:52 +0200 |
commit | 73f0f89ff3a3616a8e65b5a31c2303725994c56a (patch) | |
tree | 55b9cd6e522a56eac2549bc978b139465fd395cf /nihav-core/src/lib.rs | |
parent | 789354a8ca628eb09dd4aaf2ec660eeb7f21be9a (diff) | |
download | nihav-73f0f89ff3a3616a8e65b5a31c2303725994c56a.tar.gz |
core: fix clippy warnings
Diffstat (limited to 'nihav-core/src/lib.rs')
-rw-r--r-- | nihav-core/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/nihav-core/src/lib.rs b/nihav-core/src/lib.rs index d3104a4..d9eab81 100644 --- a/nihav-core/src/lib.rs +++ b/nihav-core/src/lib.rs @@ -17,6 +17,7 @@ pub mod muxers; #[cfg(feature="demuxers")] pub mod demuxers; +#[allow(clippy::needless_range_loop)] #[allow(clippy::too_many_arguments)] pub mod formats; pub mod frame; |