Skip to content

Commit

Permalink
Fix clippy::assign_op_pattern lints (#143)
Browse files Browse the repository at this point in the history
  • Loading branch information
waywardmonkeys authored Dec 22, 2024
1 parent 574d4c7 commit 218e97a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/wide/f32x8_t.rs
Original file line number Diff line number Diff line change
Expand Up @@ -264,8 +264,8 @@ impl f32x8 {

let mut a = x + f32x8::splat(121.274057500);
a = a - f * f32x8::splat(1.490129070);
a = a + f32x8::splat(27.728023300) / (f32x8::splat(4.84252568) - f);
a = a * f32x8::splat((1 << 23) as f32);
a += f32x8::splat(27.728023300) / (f32x8::splat(4.84252568) - f);
a *= f32x8::splat((1 << 23) as f32);

let inf_bits = f32x8::splat(f32::INFINITY.to_bits() as f32);

Expand Down

0 comments on commit 218e97a

Please sign in to comment.