diff options
| author | Jorge Aparicio <japaricious@gmail.com> | 2015-01-28 08:18:40 -0500 |
|---|---|---|
| committer | Jorge Aparicio <japaricious@gmail.com> | 2015-01-29 07:49:02 -0500 |
| commit | 09ba9f5c87a24f82d9a332fdb913511eedf5a4ec (patch) | |
| tree | 449f2c1ee00d0cb0abc17bfe5a8c8530576be45f | |
| parent | 92e966e099421654c3a76c6cb39f6b9dd6eececc (diff) | |
| download | rust-09ba9f5c87a24f82d9a332fdb913511eedf5a4ec.tar.gz rust-09ba9f5c87a24f82d9a332fdb913511eedf5a4ec.zip | |
remove #[old_impl_check] now that #21363 has been fixed
| -rw-r--r-- | src/liballoc/boxed.rs | 2 | ||||
| -rw-r--r-- | src/liballoc/lib.rs | 2 | ||||
| -rw-r--r-- | src/libcore/iter.rs | 2 | ||||
| -rw-r--r-- | src/libcore/lib.rs | 2 |
4 files changed, 0 insertions, 8 deletions
diff --git a/src/liballoc/boxed.rs b/src/liballoc/boxed.rs index 51e5fc5820c..b82b02589c0 100644 --- a/src/liballoc/boxed.rs +++ b/src/liballoc/boxed.rs @@ -250,8 +250,6 @@ impl<T: ?Sized> DerefMut for Box<T> { fn deref_mut(&mut self) -> &mut T { &mut **self } } -// FIXME(#21363) remove `old_impl_check` when bug is fixed -#[old_impl_check] impl<'a, T> Iterator for Box<Iterator<Item=T> + 'a> { type Item = T; diff --git a/src/liballoc/lib.rs b/src/liballoc/lib.rs index 6830a1c33df..f807d8d12a6 100644 --- a/src/liballoc/lib.rs +++ b/src/liballoc/lib.rs @@ -70,8 +70,6 @@ #![feature(lang_items, unsafe_destructor)] #![feature(box_syntax)] #![feature(optin_builtin_traits)] -// FIXME(#21363) remove `old_impl_check` when bug is fixed -#![feature(old_impl_check)] #![allow(unknown_features)] #![feature(int_uint)] #![feature(core)] #![feature(hash)] diff --git a/src/libcore/iter.rs b/src/libcore/iter.rs index 2e966ce59bc..8e995fed1bc 100644 --- a/src/libcore/iter.rs +++ b/src/libcore/iter.rs @@ -101,8 +101,6 @@ pub trait Iterator { fn size_hint(&self) -> (usize, Option<usize>) { (0, None) } } -// FIXME(#21363) remove `old_impl_check` when bug is fixed -#[old_impl_check] impl<'a, T> Iterator for &'a mut (Iterator<Item=T> + 'a) { type Item = T; diff --git a/src/libcore/lib.rs b/src/libcore/lib.rs index d4ca5e3f8dc..81ce0610923 100644 --- a/src/libcore/lib.rs +++ b/src/libcore/lib.rs @@ -64,8 +64,6 @@ #![feature(unboxed_closures)] #![allow(unknown_features)] #![feature(int_uint)] #![feature(on_unimplemented)] -// FIXME(#21363) remove `old_impl_check` when bug is fixed -#![feature(old_impl_check)] #![deny(missing_docs)] #[macro_use] |
