diff options
| author | bors <bors@rust-lang.org> | 2017-10-05 19:52:00 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2017-10-05 19:52:00 +0000 |
| commit | 417c73891ffd3a769e27c83b1d34916c3924ec94 (patch) | |
| tree | e65a42d5c8672dcfb78c0b87c3ddaed993eb8941 /src/liballoc | |
| parent | 4531131bf328e1372663310bfd45cd354db511ce (diff) | |
| parent | 559adb7e0680bd539331a2accfccb3e56813dca1 (diff) | |
| download | rust-417c73891ffd3a769e27c83b1d34916c3924ec94.tar.gz rust-417c73891ffd3a769e27c83b1d34916c3924ec94.zip | |
Auto merge of #44943 - nivkner:fixme_fixup, r=dtolnay
address some FIXME whose associated issues were marked as closed part of #44366
Diffstat (limited to 'src/liballoc')
| -rw-r--r-- | src/liballoc/binary_heap.rs | 2 | ||||
| -rw-r--r-- | src/liballoc/linked_list.rs | 2 | ||||
| -rw-r--r-- | src/liballoc/vec_deque.rs | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/liballoc/binary_heap.rs b/src/liballoc/binary_heap.rs index 57640af816a..94bbaf92ce9 100644 --- a/src/liballoc/binary_heap.rs +++ b/src/liballoc/binary_heap.rs @@ -926,7 +926,7 @@ impl<'a, T: 'a + fmt::Debug> fmt::Debug for Iter<'a, T> { } } -// FIXME(#19839) Remove in favor of `#[derive(Clone)]` +// FIXME(#26925) Remove in favor of `#[derive(Clone)]` #[stable(feature = "rust1", since = "1.0.0")] impl<'a, T> Clone for Iter<'a, T> { fn clone(&self) -> Iter<'a, T> { diff --git a/src/liballoc/linked_list.rs b/src/liballoc/linked_list.rs index f9512cbe977..f897feb7afa 100644 --- a/src/liballoc/linked_list.rs +++ b/src/liballoc/linked_list.rs @@ -80,7 +80,7 @@ impl<'a, T: 'a + fmt::Debug> fmt::Debug for Iter<'a, T> { } } -// FIXME #19839: deriving is too aggressive on the bounds (T doesn't need to be Clone). +// FIXME(#26925) Remove in favor of `#[derive(Clone)]` #[stable(feature = "rust1", since = "1.0.0")] impl<'a, T> Clone for Iter<'a, T> { fn clone(&self) -> Self { diff --git a/src/liballoc/vec_deque.rs b/src/liballoc/vec_deque.rs index 6d64e9e303f..f56aa23a4eb 100644 --- a/src/liballoc/vec_deque.rs +++ b/src/liballoc/vec_deque.rs @@ -1922,7 +1922,7 @@ impl<'a, T: 'a + fmt::Debug> fmt::Debug for Iter<'a, T> { } } -// FIXME(#19839) Remove in favor of `#[derive(Clone)]` +// FIXME(#26925) Remove in favor of `#[derive(Clone)]` #[stable(feature = "rust1", since = "1.0.0")] impl<'a, T> Clone for Iter<'a, T> { fn clone(&self) -> Iter<'a, T> { |
