mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-29 21:35:20 +00:00
Remove u/i128 hashing overloads from NoHashHasher::Hasher impl
This commit is contained in:
parent
d025c5d8d6
commit
0c9375b829
1 changed files with 0 additions and 8 deletions
|
@ -53,10 +53,6 @@ impl Hasher for NoHashHasher {
|
|||
self.0 = i as u64;
|
||||
}
|
||||
|
||||
fn write_u128(&mut self, i: u128) {
|
||||
self.0 = i as u64;
|
||||
}
|
||||
|
||||
fn write_usize(&mut self, i: usize) {
|
||||
self.0 = i as u64;
|
||||
}
|
||||
|
@ -77,10 +73,6 @@ impl Hasher for NoHashHasher {
|
|||
self.0 = i as u64;
|
||||
}
|
||||
|
||||
fn write_i128(&mut self, i: i128) {
|
||||
self.0 = i as u64;
|
||||
}
|
||||
|
||||
fn write_isize(&mut self, i: isize) {
|
||||
self.0 = i as u64;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue