Skip to content

deps: update pathfinder_simd #290

deps: update pathfinder_simd

deps: update pathfinder_simd #290

GitHub Actions / clippy succeeded Apr 30, 2024 in 0s

clippy

1 warning

Details

Results

Message level Amount
Internal compiler error 0
Error 0
Warning 1
Note 0
Help 0

Versions

  • rustc 1.80.0-nightly (a8a1d3a77 2024-04-29)
  • cargo 1.80.0-nightly (b60a15551 2024-04-26)
  • clippy 0.1.79 (a8a1d3a 2024-04-29)

Annotations

Check warning on line 405 in src/font.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

usage of a legacy numeric constant

warning: usage of a legacy numeric constant
   --> src/font.rs:405:25
    |
405 |                 if v <= std::f32::EPSILON {
    |                         ^^^^^^^^^^^^^^^^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants
    = note: `#[warn(clippy::legacy_numeric_constants)]` on by default
help: use the associated constant instead
    |
405 |                 if v <= f32::EPSILON {
    |                         ~~~~~~~~~~~~