diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2019-05-14 13:08:05 +0200 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2019-05-14 13:08:05 +0200 |
commit | e243ceb4d694cc08767ad70027bb6963f4cefea3 (patch) | |
tree | aff7ef58ee740515e89a7dbf66acf0456110b4a3 /nihav-core/src/dsp/mod.rs | |
parent | 250c49f64633580d3e294a7b871fad4618694209 (diff) | |
download | nihav-e243ceb4d694cc08767ad70027bb6963f4cefea3.tar.gz |
core: fix most clippy warnings
Diffstat (limited to 'nihav-core/src/dsp/mod.rs')
-rw-r--r-- | nihav-core/src/dsp/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/nihav-core/src/dsp/mod.rs b/nihav-core/src/dsp/mod.rs index 9f62c75..8e8e6af 100644 --- a/nihav-core/src/dsp/mod.rs +++ b/nihav-core/src/dsp/mod.rs @@ -1,6 +1,8 @@ #[cfg(feature="dct")] +#[allow(clippy::erasing_op)] pub mod dct; #[cfg(feature="fft")] +#[allow(clippy::erasing_op)] pub mod fft; #[cfg(feature="mdct")] pub mod mdct; |