Skip to content

Commit bba4f63

Browse files
committed
---
yaml --- r: 136191 b: refs/heads/try c: db55e70 h: refs/heads/master i: 136189: 054c702 136187: 51e336b 136183: 2276d3c 136175: 4cd85bf 136159: ea8e0dd 136127: 420df86 136063: 6670f6c 135935: 73b2e1b 135679: 6eeed66 135167: cec7097 v: v3
1 parent 73b6867 commit bba4f63

File tree

13 files changed

+13
-13
lines changed

13 files changed

+13
-13
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
refs/heads/master: b5ba2f5517b1f90d07969ca3facdf5132e42436c
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 749ff5e76a0d08837964e44c66654679a3a88bb8
5-
refs/heads/try: aa0b350c9798ca1ca1b0b82aec66f7ee2bac76ff
5+
refs/heads/try: db55e70c977f9e2a70e62ea819755ef02009db8e
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c

branches/try/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

branches/try/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

branches/try/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;

branches/try/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;

branches/try/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;

branches/try/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;

branches/try/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;

branches/try/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]

branches/try/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)]

branches/try/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

branches/try/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),

branches/try/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)