Skip to content

Commit 555e0af

Browse files
author
Lukas Markeffsky
committed
fmt
1 parent ccbc774 commit 555e0af

File tree

1 file changed

+1
-3
lines changed
  • library/std/src/collections/hash

1 file changed

+1
-3
lines changed

library/std/src/collections/hash/map.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3237,9 +3237,7 @@ pub(super) fn map_try_reserve_error(err: hashbrown::TryReserveError) -> TryReser
32373237
}
32383238

32393239
#[inline]
3240-
fn map_raw_entry<'a, K, V, S>(
3241-
raw: base::RawEntryMut<'a, K, V, S>,
3242-
) -> RawEntryMut<'a, K, V, S> {
3240+
fn map_raw_entry<'a, K, V, S>(raw: base::RawEntryMut<'a, K, V, S>) -> RawEntryMut<'a, K, V, S> {
32433241
match raw {
32443242
base::RawEntryMut::Occupied(base) => RawEntryMut::Occupied(RawOccupiedEntryMut { base }),
32453243
base::RawEntryMut::Vacant(base) => RawEntryMut::Vacant(RawVacantEntryMut { base }),

0 commit comments

Comments
 (0)