mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 06:44:35 +00:00
Add #[inline] to some new functions
Co-authored-by: Camille Gillot <gillot.camille@gmail.com>
This commit is contained in:
parent
a04c09ade8
commit
073d99b25d
@ -14,12 +14,14 @@ pub trait FingerprintComponent {
|
||||
}
|
||||
|
||||
impl FingerprintComponent for Hash64 {
|
||||
#[inline]
|
||||
fn as_u64(&self) -> u64 {
|
||||
Hash64::as_u64(*self)
|
||||
}
|
||||
}
|
||||
|
||||
impl FingerprintComponent for u64 {
|
||||
#[inline]
|
||||
fn as_u64(&self) -> u64 {
|
||||
*self
|
||||
}
|
||||
|
@ -36,6 +36,7 @@ impl Hash64 {
|
||||
}
|
||||
|
||||
impl BitXorAssign<u64> for Hash64 {
|
||||
#[inline]
|
||||
fn bitxor_assign(&mut self, rhs: u64) {
|
||||
self.inner ^= rhs;
|
||||
}
|
||||
|
@ -186,6 +186,7 @@ impl StableCrateId {
|
||||
StableCrateId(hasher.finish())
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn as_u64(self) -> u64 {
|
||||
self.0.as_u64()
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user