Skip to content

Commit

Permalink
Fix up two minor diffs to hashbrown
Browse files Browse the repository at this point in the history
  • Loading branch information
jonhoo committed Jul 28, 2020
1 parent 6846066 commit 898ceeb
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1594,7 +1594,6 @@ impl<'a, K, V, S> RawEntryMut<'a, K, V, S> {
/// ```
/// use griddle::HashMap;
///
///
/// let mut map: HashMap<&str, u32> = HashMap::new();
///
/// map.raw_entry_mut()
Expand Down Expand Up @@ -1778,7 +1777,6 @@ impl<'a, K, V, S> RawVacantEntryMut<'a, K, V, S> {
let elem = self.table.insert(hasher.finish(), (key, value), |k| {
make_hash(hash_builder, &k.0)
});

RawOccupiedEntryMut {
elem,
table: self.table,
Expand Down

0 comments on commit 898ceeb

Please sign in to comment.