Skip to content

Commit

Permalink
Address clippy lint violation clippy::let_underscore_untyped introd…
Browse files Browse the repository at this point in the history
  • Loading branch information
lopopolo committed Apr 20, 2023
1 parent 1c5cf53 commit 2ef823a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ macro_rules! lossless_cast_u32_to_usize {
macro_rules! const_assert_size_eq {
($left:ty, $right:ty $(,)?) => {
const _: () = {
let _ = ::core::mem::transmute::<$left, $right>;
let _assert = ::core::mem::transmute::<$left, $right>;
};
};
}
Expand Down

0 comments on commit 2ef823a

Please sign in to comment.