Skip to content

Commit 3dd812f

Browse files
committed
Remove unused_variables lint expectation
We've implemented everything on x86 now!
1 parent 429a304 commit 3dd812f

File tree

4 files changed

+0
-24
lines changed

4 files changed

+0
-24
lines changed

fearless_simd/src/generated/avx2.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,6 @@
33

44
// This file is autogenerated by fearless_simd_gen
55

6-
#![expect(
7-
unused_variables,
8-
clippy::todo,
9-
reason = "TODO: https://github.com/linebender/fearless_simd/issues/40"
10-
)]
116
use crate::{Level, Simd, SimdFrom, SimdInto, seal::Seal};
127
use crate::{
138
f32x4, f32x8, f32x16, f64x2, f64x4, f64x8, i8x16, i8x32, i8x64, i16x8, i16x16, i16x32, i32x4,

fearless_simd/src/generated/sse4_2.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,6 @@
33

44
// This file is autogenerated by fearless_simd_gen
55

6-
#![expect(
7-
unused_variables,
8-
clippy::todo,
9-
reason = "TODO: https://github.com/linebender/fearless_simd/issues/40"
10-
)]
116
use crate::{Level, Simd, SimdFrom, SimdInto, seal::Seal};
127
use crate::{
138
f32x4, f32x8, f32x16, f64x2, f64x4, f64x8, i8x16, i8x32, i8x64, i16x8, i16x16, i16x32, i32x4,

fearless_simd_gen/src/mk_avx2.rs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,6 @@ pub(crate) fn mk_avx2_impl() -> TokenStream {
3333
let ty_impl = mk_type_impl();
3434

3535
quote! {
36-
// Until we have implemented all functions.
37-
#![expect(
38-
unused_variables,
39-
clippy::todo,
40-
reason = "TODO: https://github.com/linebender/fearless_simd/issues/40"
41-
)]
42-
4336
#[cfg(target_arch = "x86")]
4437
use core::arch::x86::*;
4538
#[cfg(target_arch = "x86_64")]

fearless_simd_gen/src/mk_sse4_2.rs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,6 @@ pub(crate) fn mk_sse4_2_impl() -> TokenStream {
3333
let ty_impl = mk_type_impl();
3434

3535
quote! {
36-
// Until we have implemented all functions.
37-
#![expect(
38-
unused_variables,
39-
clippy::todo,
40-
reason = "TODO: https://github.com/linebender/fearless_simd/issues/40"
41-
)]
42-
4336
#[cfg(target_arch = "x86")]
4437
use core::arch::x86::*;
4538
#[cfg(target_arch = "x86_64")]

0 commit comments

Comments
 (0)