Skip to content

Commit

Permalink
Remove unused_qualifications linter flag
Browse files Browse the repository at this point in the history
This is necessary to build both with MSRV 1.79 (where `size_of()` needs
the `std::mem::` qualification) and 1.80 (where it was added to prelude
and doesn't need it). Otherwise there's always one version which fails
to build.

Fixes #360
  • Loading branch information
djeedai committed Aug 5, 2024
1 parent d4eddb1 commit c25abb6
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
unsafe_code,
unstable_features,
unused_import_braces,
unused_qualifications,
clippy::suboptimal_flops,
clippy::imprecise_flops,
clippy::branches_sharing_code,
Expand Down

0 comments on commit c25abb6

Please sign in to comment.