about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorJorge Aparicio <japaricious@gmail.com>2015-01-28 08:18:40 -0500
committerJorge Aparicio <japaricious@gmail.com>2015-01-29 07:49:02 -0500
commit09ba9f5c87a24f82d9a332fdb913511eedf5a4ec (patch)
tree449f2c1ee00d0cb0abc17bfe5a8c8530576be45f /src/liballoc
parent92e966e099421654c3a76c6cb39f6b9dd6eececc (diff)
downloadrust-09ba9f5c87a24f82d9a332fdb913511eedf5a4ec.tar.gz
rust-09ba9f5c87a24f82d9a332fdb913511eedf5a4ec.zip
remove #[old_impl_check] now that #21363 has been fixed
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/boxed.rs2
-rw-r--r--src/liballoc/lib.rs2
2 files changed, 0 insertions, 4 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)]