Skip to content

Commit db55e70

Browse files
committed
syntax: mark the managed_boxes feature as Removed.
1 parent aa0b350 commit db55e70

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed

src/libcollections/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
html_playground_url = "http://play.rust-lang.org/")]
2121

2222
#![allow(unknown_features)]
23-
#![feature(macro_rules, managed_boxes, default_type_params, phase, globs)]
23+
#![feature(macro_rules, default_type_params, phase, globs)]
2424
#![feature(unsafe_destructor, import_shadowing, slicing_syntax)]
2525
#![no_std]
2626

src/libcore/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858

5959
#![no_std]
6060
#![allow(unknown_features)]
61-
#![feature(globs, intrinsics, lang_items, macro_rules, managed_boxes, phase)]
61+
#![feature(globs, intrinsics, lang_items, macro_rules, phase)]
6262
#![feature(simd, unsafe_destructor, slicing_syntax)]
6363
#![deny(missing_doc)]
6464

src/libdebug/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
2626
html_root_url = "http://doc.rust-lang.org/master/")]
2727
#![experimental]
28-
#![feature(managed_boxes, macro_rules)]
28+
#![feature(macro_rules)]
2929
#![allow(experimental)]
3030

3131
pub mod fmt;

src/libfourcc/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ fn main() {
5050
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
5151
html_root_url = "http://doc.rust-lang.org/master/")]
5252

53-
#![feature(plugin_registrar, managed_boxes)]
53+
#![feature(plugin_registrar)]
5454

5555
extern crate syntax;
5656
extern crate rustc;

src/libhexfloat/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ fn main() {
4646
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
4747
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
4848
html_root_url = "http://doc.rust-lang.org/master/")]
49-
#![feature(plugin_registrar, managed_boxes)]
49+
#![feature(plugin_registrar)]
5050

5151
extern crate syntax;
5252
extern crate rustc;

src/libregex_macros/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
2020
html_root_url = "http://doc.rust-lang.org/master/")]
2121

22-
#![feature(plugin_registrar, managed_boxes, quote)]
22+
#![feature(plugin_registrar, quote)]
2323

2424
extern crate regex;
2525
extern crate syntax;

src/librustdoc/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#![crate_type = "rlib"]
1717

1818
#![allow(unknown_features)]
19-
#![feature(globs, struct_variant, managed_boxes, macro_rules, phase, slicing_syntax)]
19+
#![feature(globs, struct_variant, macro_rules, phase, slicing_syntax)]
2020

2121
extern crate arena;
2222
extern crate debug;

src/librustrt/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
html_root_url = "http://doc.rust-lang.org/master/")]
1818

1919
#![allow(unknown_features)]
20-
#![feature(macro_rules, phase, globs, thread_local, managed_boxes, asm)]
20+
#![feature(macro_rules, phase, globs, thread_local, asm)]
2121
#![feature(linkage, lang_items, unsafe_destructor, default_type_params)]
2222
#![feature(import_shadowing, slicing_syntax)]
2323
#![no_std]

src/libserialize/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Core encoding and decoding interfaces.
2424
html_root_url = "http://doc.rust-lang.org/master/",
2525
html_playground_url = "http://play.rust-lang.org/")]
2626
#![allow(unknown_features)]
27-
#![feature(macro_rules, managed_boxes, default_type_params, phase, slicing_syntax)]
27+
#![feature(macro_rules, default_type_params, phase, slicing_syntax)]
2828

2929
// test harness access
3030
#[cfg(test)]

src/libstd/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@
106106
html_playground_url = "http://play.rust-lang.org/")]
107107

108108
#![allow(unknown_features)]
109-
#![feature(macro_rules, globs, managed_boxes, linkage)]
109+
#![feature(macro_rules, globs, linkage)]
110110
#![feature(default_type_params, phase, lang_items, unsafe_destructor)]
111111
#![feature(import_shadowing, slicing_syntax)]
112112

src/libsyntax/feature_gate.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ static KNOWN_FEATURES: &'static [(&'static str, Status)] = &[
4040
("struct_variant", Active),
4141
("once_fns", Active),
4242
("asm", Active),
43-
("managed_boxes", Active),
43+
("managed_boxes", Removed),
4444
("non_ascii_idents", Active),
4545
("thread_local", Active),
4646
("link_args", Active),

src/test/auxiliary/issue_16723_multiple_items_syntax_ext.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// ignore-stage1
1212
// force-host
1313

14-
#![feature(plugin_registrar, managed_boxes, quote)]
14+
#![feature(plugin_registrar, quote)]
1515
#![crate_type = "dylib"]
1616

1717
extern crate syntax;

0 commit comments

Comments
 (0)