chore: bump clippy version (#5173)

This commit is contained in:
Alice Ryhl
2022-11-06 12:44:26 +01:00
committed by GitHub
parent f4643608ad
commit fc9518b627
30 changed files with 66 additions and 67 deletions
+1 -1
View File
@@ -275,7 +275,7 @@ impl<T> SlabStorage<T> {
fn remap_key(&self, key: &Key) -> Option<KeyInternal> {
let key_map = &self.key_map;
if self.compact_called {
key_map.get(&*key).copied()
key_map.get(key).copied()
} else {
Some((*key).into())
}