diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2015-03-26 13:25:06 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2015-03-26 13:25:33 -0700 |
| commit | 9754b06cd80cfcc523573535090519bec935fec3 (patch) | |
| tree | 4257597fd0999e52c8dab50e9fea0841bc60e923 /src/libstd/lib.rs | |
| parent | 557d4346a26266d2eb13f6b0adf106b8873b0da1 (diff) | |
| download | rust-9754b06cd80cfcc523573535090519bec935fec3.tar.gz rust-9754b06cd80cfcc523573535090519bec935fec3.zip | |
rustc: Remove support for old_impl_check
This commit removes compiler support for the `old_impl_check` attribute which should in theory be entirely removed now. The last remaining use of it in the standard library has been updated by moving the type parameter on the `old_io::Acceptor` trait into an associated type. As a result, this is a breaking change for all current users of the deprecated `old_io::Acceptor` trait. Code can be migrated by using the `Connection` associated type instead. [breaking-change]
Diffstat (limited to 'src/libstd/lib.rs')
| -rw-r--r-- | src/libstd/lib.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index cca6bb747d4..c2d49810d59 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -114,7 +114,6 @@ #![feature(lang_items)] #![feature(libc)] #![feature(linkage, thread_local, asm)] -#![feature(old_impl_check)] #![feature(optin_builtin_traits)] #![feature(rand)] #![feature(staged_api)] |
