X-Git-Url: https://git.nihav.org/?a=blobdiff_plain;f=nihav-core%2Fsrc%2Fdsp%2Fmod.rs;h=2ff322d8361ab201e1ce6dde9a2b4378d4c823bd;hb=4e034a32d947e1ef5f357cc2477d6f1c3b8454a9;hp=9f62c759c4d355a4fe91acb64e42120e5ac00745;hpb=5a990253d72311958164c0680a6614b52d5cecca;p=nihav.git diff --git a/nihav-core/src/dsp/mod.rs b/nihav-core/src/dsp/mod.rs index 9f62c75..2ff322d 100644 --- a/nihav-core/src/dsp/mod.rs +++ b/nihav-core/src/dsp/mod.rs @@ -1,6 +1,9 @@ +//! DSP routines. #[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;