Skip to content

Commit

Permalink
syntax: mark the managed_boxes feature as Removed.
Browse files Browse the repository at this point in the history
  • Loading branch information
eddyb committed Oct 2, 2014
1 parent aa0b350 commit db55e70
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion src/libcollections/lib.rs
Expand Up @@ -20,7 +20,7 @@
html_playground_url = "http://play.rust-lang.org/")]

#![allow(unknown_features)]
#![feature(macro_rules, managed_boxes, default_type_params, phase, globs)]
#![feature(macro_rules, default_type_params, phase, globs)]
#![feature(unsafe_destructor, import_shadowing, slicing_syntax)]
#![no_std]

Expand Down
2 changes: 1 addition & 1 deletion src/libcore/lib.rs
Expand Up @@ -58,7 +58,7 @@

#![no_std]
#![allow(unknown_features)]
#![feature(globs, intrinsics, lang_items, macro_rules, managed_boxes, phase)]
#![feature(globs, intrinsics, lang_items, macro_rules, phase)]
#![feature(simd, unsafe_destructor, slicing_syntax)]
#![deny(missing_doc)]

Expand Down
2 changes: 1 addition & 1 deletion src/libdebug/lib.rs
Expand Up @@ -25,7 +25,7 @@
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
html_root_url = "http://doc.rust-lang.org/master/")]
#![experimental]
#![feature(managed_boxes, macro_rules)]
#![feature(macro_rules)]
#![allow(experimental)]

pub mod fmt;
Expand Down
2 changes: 1 addition & 1 deletion src/libfourcc/lib.rs
Expand Up @@ -50,7 +50,7 @@ fn main() {
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
html_root_url = "http://doc.rust-lang.org/master/")]

#![feature(plugin_registrar, managed_boxes)]
#![feature(plugin_registrar)]

extern crate syntax;
extern crate rustc;
Expand Down
2 changes: 1 addition & 1 deletion src/libhexfloat/lib.rs
Expand Up @@ -46,7 +46,7 @@ fn main() {
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
html_root_url = "http://doc.rust-lang.org/master/")]
#![feature(plugin_registrar, managed_boxes)]
#![feature(plugin_registrar)]

extern crate syntax;
extern crate rustc;
Expand Down
2 changes: 1 addition & 1 deletion src/libregex_macros/lib.rs
Expand Up @@ -19,7 +19,7 @@
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
html_root_url = "http://doc.rust-lang.org/master/")]

#![feature(plugin_registrar, managed_boxes, quote)]
#![feature(plugin_registrar, quote)]

extern crate regex;
extern crate syntax;
Expand Down
2 changes: 1 addition & 1 deletion src/librustdoc/lib.rs
Expand Up @@ -16,7 +16,7 @@
#![crate_type = "rlib"]

#![allow(unknown_features)]
#![feature(globs, struct_variant, managed_boxes, macro_rules, phase, slicing_syntax)]
#![feature(globs, struct_variant, macro_rules, phase, slicing_syntax)]

extern crate arena;
extern crate debug;
Expand Down
2 changes: 1 addition & 1 deletion src/librustrt/lib.rs
Expand Up @@ -17,7 +17,7 @@
html_root_url = "http://doc.rust-lang.org/master/")]

#![allow(unknown_features)]
#![feature(macro_rules, phase, globs, thread_local, managed_boxes, asm)]
#![feature(macro_rules, phase, globs, thread_local, asm)]
#![feature(linkage, lang_items, unsafe_destructor, default_type_params)]
#![feature(import_shadowing, slicing_syntax)]
#![no_std]
Expand Down
2 changes: 1 addition & 1 deletion src/libserialize/lib.rs
Expand Up @@ -24,7 +24,7 @@ Core encoding and decoding interfaces.
html_root_url = "http://doc.rust-lang.org/master/",
html_playground_url = "http://play.rust-lang.org/")]
#![allow(unknown_features)]
#![feature(macro_rules, managed_boxes, default_type_params, phase, slicing_syntax)]
#![feature(macro_rules, default_type_params, phase, slicing_syntax)]

// test harness access
#[cfg(test)]
Expand Down
2 changes: 1 addition & 1 deletion src/libstd/lib.rs
Expand Up @@ -106,7 +106,7 @@
html_playground_url = "http://play.rust-lang.org/")]

#![allow(unknown_features)]
#![feature(macro_rules, globs, managed_boxes, linkage)]
#![feature(macro_rules, globs, linkage)]
#![feature(default_type_params, phase, lang_items, unsafe_destructor)]
#![feature(import_shadowing, slicing_syntax)]

Expand Down
2 changes: 1 addition & 1 deletion src/libsyntax/feature_gate.rs
Expand Up @@ -40,7 +40,7 @@ static KNOWN_FEATURES: &'static [(&'static str, Status)] = &[
("struct_variant", Active),
("once_fns", Active),
("asm", Active),
("managed_boxes", Active),
("managed_boxes", Removed),
("non_ascii_idents", Active),
("thread_local", Active),
("link_args", Active),
Expand Down
Expand Up @@ -11,7 +11,7 @@
// ignore-stage1
// force-host

#![feature(plugin_registrar, managed_boxes, quote)]
#![feature(plugin_registrar, quote)]
#![crate_type = "dylib"]

extern crate syntax;
Expand Down

0 comments on commit db55e70

Please sign in to comment.