Skip to content

Commit b09e5d1

Browse files
committed
syntax: mark the managed_boxes feature as Removed.
1 parent 8e06bc1 commit b09e5d1

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
@@ -19,7 +19,7 @@
1919
html_root_url = "http://doc.rust-lang.org/master/",
2020
html_playground_url = "http://play.rust-lang.org/")]
2121

22-
#![feature(macro_rules, managed_boxes, default_type_params, phase, globs)]
22+
#![feature(macro_rules, default_type_params, phase, globs)]
2323
#![feature(unsafe_destructor, import_shadowing)]
2424
#![no_std]
2525

src/libcore/lib.rs

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

5959
#![no_std]
60-
#![feature(globs, intrinsics, lang_items, macro_rules, managed_boxes, phase)]
60+
#![feature(globs, intrinsics, lang_items, macro_rules, phase)]
6161
#![feature(simd, unsafe_destructor)]
6262
#![deny(missing_doc)]
6363

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
@@ -15,7 +15,7 @@
1515
#![crate_type = "dylib"]
1616
#![crate_type = "rlib"]
1717

18-
#![feature(globs, struct_variant, managed_boxes, macro_rules, phase)]
18+
#![feature(globs, struct_variant, macro_rules, phase)]
1919

2020
extern crate arena;
2121
extern crate debug;

src/librustrt/lib.rs

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

19-
#![feature(macro_rules, phase, globs, thread_local, managed_boxes, asm)]
19+
#![feature(macro_rules, phase, globs, thread_local, asm)]
2020
#![feature(linkage, lang_items, unsafe_destructor, default_type_params)]
2121
#![feature(import_shadowing)]
2222
#![no_std]

src/libserialize/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Core encoding and decoding interfaces.
2323
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
2424
html_root_url = "http://doc.rust-lang.org/master/",
2525
html_playground_url = "http://play.rust-lang.org/")]
26-
#![feature(macro_rules, managed_boxes, default_type_params, phase)]
26+
#![feature(macro_rules, default_type_params, phase)]
2727

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

src/libstd/lib.rs

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

108-
#![feature(macro_rules, globs, managed_boxes, linkage)]
108+
#![feature(macro_rules, globs, linkage)]
109109
#![feature(default_type_params, phase, lang_items, unsafe_destructor)]
110110
#![feature(import_shadowing)]
111111

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)