Skip to content

Commit

Permalink
Delete goofy files
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Taillefer (from Dev Box) committed Jul 29, 2024
1 parent 5854939 commit c140c52
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 32 deletions.
5 changes: 0 additions & 5 deletions .idea/.gitignore

This file was deleted.

13 changes: 0 additions & 13 deletions .idea/hashbrown.iml

This file was deleted.

8 changes: 0 additions & 8 deletions .idea/modules.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/vcs.xml

This file was deleted.

11 changes: 11 additions & 0 deletions src/table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1931,6 +1931,17 @@ impl<T> ExactSizeIterator for IterMut<'_, T> {

impl<T> FusedIterator for IterMut<'_, T> {}

// FIXME(#26925) Remove in favor of `#[derive(Clone)]`
impl<'a, T> Clone for IterMut<'a, T> {
#[cfg_attr(feature = "inline-more", inline)]
fn clone(&self) -> IterMut<'a, T> {
IterMut {
inner: self.inner.clone(),
marker: PhantomData,
}
}
}

impl<T: fmt::Debug> fmt::Debug for IterMut<'_, T> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_list().entries(self.clone()).finish()
Expand Down

0 comments on commit c140c52

Please sign in to comment.