diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2017-05-08 14:36:44 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2017-05-11 16:03:05 -0700 |
| commit | ab54f4b226639558ff46ea1f3e3f504aacef562d (patch) | |
| tree | 1f3c2871920222119755d406e0ec9c5b66e46dc5 /src/libarena | |
| parent | af0e16c852662d23097ce1821ff04c1676aed20f (diff) | |
| download | rust-ab54f4b226639558ff46ea1f3e3f504aacef562d.tar.gz rust-ab54f4b226639558ff46ea1f3e3f504aacef562d.zip | |
rustc: Remove #![unstable] annotation
These are now no longer necessary with `-Z force-unstable-if-unmarked`
Diffstat (limited to 'src/libarena')
| -rw-r--r-- | src/libarena/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libarena/lib.rs b/src/libarena/lib.rs index 321fa2edd56..c4c1635aa2a 100644 --- a/src/libarena/lib.rs +++ b/src/libarena/lib.rs @@ -19,7 +19,7 @@ //! objects of a single type. #![crate_name = "arena"] -#![unstable(feature = "rustc_private", issue = "27812")] +#![cfg_attr(stage0, unstable(feature = "rustc_private", issue = "27812"))] #![crate_type = "rlib"] #![crate_type = "dylib"] #![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", @@ -32,7 +32,7 @@ #![feature(core_intrinsics)] #![feature(dropck_eyepatch)] #![feature(generic_param_attrs)] -#![feature(staged_api)] +#![cfg_attr(stage0, feature(staged_api))] #![cfg_attr(test, feature(test))] #![allow(deprecated)] |
