Skip to content
This repository was archived by the owner on May 10, 2023. It is now read-only.

Commit 5043acb

Browse files
committed
yFFT: Eliminate compiler warnings
1 parent 03e7b22 commit 5043acb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/kernel/x86/mod.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ mod x86avxf32radix4 {
5050
#[cfg(not(target_feature = "avx"))]
5151
mod x86avxf32realfft {
5252
pub fn new_x86_avx_f32_real_fft_pre_post_process_kernel<T>(
53-
len: usize,
54-
inverse: bool,
53+
_len: usize,
54+
_inverse: bool,
5555
) -> Option<Box<super::Kernel<T>>> {
5656
None
5757
}
@@ -69,8 +69,8 @@ mod x86sse3f32radix4 {
6969
#[cfg(not(target_feature = "sse3"))]
7070
mod x86sse3f32realfft {
7171
pub fn new_x86_sse3_f32_real_fft_pre_post_process_kernel<T>(
72-
len: usize,
73-
inverse: bool,
72+
_len: usize,
73+
_inverse: bool,
7474
) -> Option<Box<super::Kernel<T>>> {
7575
None
7676
}

0 commit comments

Comments
 (0)