Skip to content

Commit

Permalink
hopefully pass codecov
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacholt100 committed Sep 18, 2024
1 parent b881f2e commit e202f08
Showing 1 changed file with 3 additions and 15 deletions.
18 changes: 3 additions & 15 deletions src/int/numtraits.rs
Original file line number Diff line number Diff line change
Expand Up @@ -297,21 +297,9 @@ macro_rules! prim_int_methods {
fn to_be(self) -> Self;
fn to_le(self) -> Self;
fn pow(self, exp: u32) -> Self;
}

#[inline]
fn leading_ones(self) -> u32 {
Self::leading_ones(self)
}

#[inline]
fn trailing_ones(self) -> u32 {
Self::trailing_ones(self)
}

#[inline]
fn reverse_bits(self) -> Self {
Self::reverse_bits(self)
fn leading_ones(self) -> u32;
fn trailing_ones(self) -> u32;
fn reverse_bits(self) -> Self;
}
};
}
Expand Down

0 comments on commit e202f08

Please sign in to comment.