Skip to content

Commit

Permalink
Fix clippy::legacy_numeric_constants lint
Browse files Browse the repository at this point in the history
  • Loading branch information
waywardmonkeys authored and mkeeter committed Aug 27, 2024
1 parent e93f50c commit 6304819
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fidget/src/jit/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1004,7 +1004,7 @@ impl JitTracingEval {
let mut simplify = 0;
self.choices.resize(tape.choice_count, Choice::Unknown);
self.choices.fill(Choice::Unknown);
let mut out = std::f32::NAN.into();
let mut out = f32::NAN.into();
unsafe {
(tape.fn_trace)(
vars.as_ptr(),
Expand Down

0 comments on commit 6304819

Please sign in to comment.