Skip to content

Commit

Permalink
silence clippy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
sarah committed Feb 8, 2024
1 parent be7547c commit a7a6968
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pulp/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3710,6 +3710,7 @@ impl core::ops::BitXor for b64 {

impl Debug for b8 {
fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result {
#[allow(dead_code)]
#[derive(Copy, Clone, Debug)]
struct b8(bool, bool, bool, bool, bool, bool, bool, bool);
b8(
Expand All @@ -3727,6 +3728,7 @@ impl Debug for b8 {
}
impl Debug for b16 {
fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result {
#[allow(dead_code)]
#[derive(Copy, Clone, Debug)]
struct b16(
bool,
Expand Down Expand Up @@ -3769,6 +3771,7 @@ impl Debug for b16 {
}
impl Debug for b32 {
fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result {
#[allow(dead_code)]
#[derive(Copy, Clone, Debug)]
struct b32(
bool,
Expand Down Expand Up @@ -3843,6 +3846,7 @@ impl Debug for b32 {
}
impl Debug for b64 {
fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result {
#[allow(dead_code)]
#[derive(Copy, Clone, Debug)]
struct b64(
bool,
Expand Down

0 comments on commit a7a6968

Please sign in to comment.