Skip to content

Commit ff89671

Browse files
huonwnikomatsakis
authored andcommitted
---
yaml --- r: 171645 b: refs/heads/batch c: 4f5a57e h: refs/heads/master i: 171643: 71a3ee6 v: v3
1 parent 1132ba9 commit ff89671

File tree

33 files changed

+38
-9
lines changed

33 files changed

+38
-9
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ refs/tags/0.12.0: f0c419429ef30723ceaf6b42f9b5a2aeb5d2e2d1
2929
refs/heads/issue-18208-method-dispatch-2: 9e1eae4fb9b6527315b4441cf8a0f5ca911d1671
3030
refs/heads/automation-fail: 1bf06495443584539b958873e04cc2f864ab10e4
3131
refs/heads/issue-18208-method-dispatch-3-quick-reject: 2009f85b9f99dedcec4404418eda9ddba90258a2
32-
refs/heads/batch: d12514bc589c1955108d517acd6d5952929b1650
32+
refs/heads/batch: 4f5a57e80ef6c029278f1e8ef59e13dcea9b255b
3333
refs/heads/building: 126db549b038c84269a1e4fe46f051b2c15d6970
3434
refs/heads/beta: 496dc4eae7de9d14cd49511a9acfbf5f11ae6c3f
3535
refs/heads/windistfix: 7608dbad651f02e837ed05eef3d74a6662a6e928

branches/batch/src/compiletest/compiletest.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
#![allow(unknown_features)]
1313
#![feature(slicing_syntax, unboxed_closures)]
1414
#![feature(box_syntax)]
15+
#![feature(int_uint)]
1516

1617
#![deny(warnings)]
1718

branches/batch/src/liballoc/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@
6868
#![allow(unknown_features)]
6969
#![feature(lang_items, unsafe_destructor)]
7070
#![feature(box_syntax)]
71+
#![allow(unknown_features)] #![feature(int_uint)]
7172

7273
#[macro_use]
7374
extern crate core;

branches/batch/src/libarena/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
#![feature(unsafe_destructor)]
3333
#![feature(unboxed_closures)]
3434
#![feature(box_syntax)]
35+
#![allow(unknown_features)] #![feature(int_uint)]
3536
#![allow(missing_docs)]
3637

3738
extern crate alloc;

branches/batch/src/libcollections/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
#![feature(box_syntax)]
2828
#![feature(unboxed_closures)]
2929
#![feature(old_impl_check)]
30+
#![allow(unknown_features)] #![feature(int_uint)]
3031
#![no_std]
3132

3233
#[macro_use]

branches/batch/src/libcore/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,10 @@
5959
#![no_std]
6060
#![allow(unknown_features, raw_pointer_derive)]
6161
#![cfg_attr(stage0, allow(unused_attributes))]
62-
#![feature(intrinsics, lang_items)]
62+
#![allow(unknown_features)] #![feature(intrinsics, lang_items)]
6363
#![feature(simd, unsafe_destructor, slicing_syntax)]
6464
#![feature(unboxed_closures)]
65+
#![allow(unknown_features)] #![feature(int_uint)]
6566
#![deny(missing_docs)]
6667

6768
#[macro_use]

branches/batch/src/libcore/macros.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ macro_rules! panic {
1515
panic!("explicit panic")
1616
);
1717
($msg:expr) => ({
18-
static _MSG_FILE_LINE: (&'static str, &'static str, uint) = ($msg, file!(), line!());
18+
static _MSG_FILE_LINE: (&'static str, &'static str, usize) = ($msg, file!(), line!());
1919
::core::panicking::panic(&_MSG_FILE_LINE)
2020
});
2121
($fmt:expr, $($arg:tt)*) => ({
2222
// The leading _'s are to avoid dead code warnings if this is
2323
// used inside a dead function. Just `#[allow(dead_code)]` is
2424
// insufficient, since the user may have
2525
// `#[forbid(dead_code)]` and which cannot be overridden.
26-
static _FILE_LINE: (&'static str, uint) = (file!(), line!());
26+
static _FILE_LINE: (&'static str, usize) = (file!(), line!());
2727
::core::panicking::panic_fmt(format_args!($fmt, $($arg)*), &_FILE_LINE)
2828
});
2929
}

branches/batch/src/libcoretest/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
#![feature(unsafe_destructor, slicing_syntax)]
1212
#![feature(unboxed_closures)]
1313
#![feature(box_syntax)]
14+
#![allow(unknown_features)] #![feature(int_uint)]
1415

1516
extern crate core;
1617
extern crate test;

branches/batch/src/libflate/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
#![crate_name = "flate"]
1818
#![experimental]
1919
#![staged_api]
20+
#![allow(unknown_features)] #![feature(int_uint)]
2021
#![crate_type = "rlib"]
2122
#![crate_type = "dylib"]
2223
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",

branches/batch/src/libfmt_macros/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
html_playground_url = "http://play.rust-lang.org/")]
2626

2727
#![feature(slicing_syntax)]
28+
#![allow(unknown_features)] #![feature(int_uint)]
2829

2930
pub use self::Piece::*;
3031
pub use self::Position::*;

branches/batch/src/libgetopts/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@
8787
html_root_url = "http://doc.rust-lang.org/nightly/",
8888
html_playground_url = "http://play.rust-lang.org/")]
8989
#![feature(slicing_syntax)]
90+
#![allow(unknown_features)] #![feature(int_uint)]
9091
#![deny(missing_docs)]
9192

9293
#[cfg(test)] #[macro_use] extern crate log;

branches/batch/src/libgraphviz/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -273,6 +273,7 @@
273273
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
274274
html_root_url = "http://doc.rust-lang.org/nightly/")]
275275
#![feature(slicing_syntax)]
276+
#![allow(unknown_features)] #![feature(int_uint)]
276277

277278
use self::LabelText::*;
278279

branches/batch/src/liblibc/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
#![crate_type = "rlib"]
1313
#![cfg_attr(not(feature = "cargo-build"), experimental)]
1414
#![cfg_attr(not(feature = "cargo-build"), staged_api)]
15+
#![allow(unknown_features)] #![feature(int_uint)]
1516
#![no_std]
1617
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
1718
html_favicon_url = "http://www.rust-lang.org/favicon.ico",

branches/batch/src/liblog/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,7 @@
168168
#![allow(unknown_features)]
169169
#![feature(slicing_syntax)]
170170
#![feature(box_syntax)]
171+
#![allow(unknown_features)] #![feature(int_uint)]
171172
#![deny(missing_docs)]
172173

173174
extern crate regex;

branches/batch/src/librand/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
2323
html_root_url = "http://doc.rust-lang.org/nightly/",
2424
html_playground_url = "http://play.rust-lang.org/")]
25-
25+
#![allow(unknown_features)] #![feature(int_uint)]
2626
#![no_std]
2727
#![experimental]
2828
#![staged_api]

branches/batch/src/librbml/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
html_playground_url = "http://play.rust-lang.org/")]
2727
#![allow(unknown_features)]
2828
#![feature(slicing_syntax)]
29+
#![allow(unknown_features)] #![feature(int_uint)]
2930

3031
extern crate serialize;
3132
#[macro_use] extern crate log;

branches/batch/src/libregex/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
#![allow(unknown_features)]
2727
#![feature(slicing_syntax)]
2828
#![feature(box_syntax)]
29+
#![allow(unknown_features)] #![feature(int_uint)]
2930
#![deny(missing_docs)]
3031

3132
#[cfg(test)]

branches/batch/src/librustc/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
#![feature(quote)]
2828
#![feature(slicing_syntax, unsafe_destructor)]
2929
#![feature(box_syntax)]
30+
#![allow(unknown_features)] #![feature(int_uint)]
3031
#![feature(rustc_diagnostic_macros)]
3132
#![feature(old_impl_check)]
3233

branches/batch/src/librustc_back/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
html_root_url = "http://doc.rust-lang.org/nightly/")]
3232
#![allow(unknown_features)]
3333
#![feature(slicing_syntax, box_syntax)]
34+
#![allow(unknown_features)] #![feature(int_uint)]
3435

3536
extern crate syntax;
3637
extern crate serialize;

branches/batch/src/librustc_borrowck/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
#![feature(quote)]
2222
#![feature(slicing_syntax, unsafe_destructor)]
2323
#![feature(rustc_diagnostic_macros)]
24+
#![allow(unknown_features)] #![feature(int_uint)]
2425
#![allow(non_camel_case_types)]
2526

2627
#[macro_use] extern crate log;

branches/batch/src/librustc_driver/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
#![feature(slicing_syntax, unsafe_destructor)]
2929
#![feature(box_syntax)]
3030
#![feature(rustc_diagnostic_macros)]
31+
#![allow(unknown_features)] #![feature(int_uint)]
3132

3233
extern crate arena;
3334
extern crate flate;

branches/batch/src/librustc_llvm/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
#![allow(unknown_features)]
2626
#![feature(link_args)]
2727
#![feature(box_syntax)]
28+
#![allow(unknown_features)] #![feature(int_uint)]
2829

2930
extern crate libc;
3031

branches/batch/src/librustc_resolve/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919

2020
#![feature(slicing_syntax)]
2121
#![feature(rustc_diagnostic_macros)]
22+
#![allow(unknown_features)] #![feature(int_uint)]
2223

2324
#[macro_use] extern crate log;
2425
#[macro_use] extern crate syntax;

branches/batch/src/librustc_trans/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
#![feature(slicing_syntax, unsafe_destructor)]
2929
#![feature(box_syntax)]
3030
#![feature(rustc_diagnostic_macros)]
31+
#![allow(unknown_features)] #![feature(int_uint)]
3132

3233
extern crate arena;
3334
extern crate flate;

branches/batch/src/librustc_typeck/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ This API is completely unstable and subject to change.
7777
#![feature(slicing_syntax, unsafe_destructor)]
7878
#![feature(box_syntax)]
7979
#![feature(rustc_diagnostic_macros)]
80+
#![allow(unknown_features)] #![feature(int_uint)]
8081
#![allow(non_camel_case_types)]
8182

8283
#[macro_use] extern crate log;

branches/batch/src/librustdoc/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
html_playground_url = "http://play.rust-lang.org/")]
2020
#![feature(slicing_syntax)]
2121
#![feature(box_syntax)]
22+
#![allow(unknown_features)] #![feature(int_uint)]
2223

2324
extern crate arena;
2425
extern crate getopts;

branches/batch/src/libserialize/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ Core encoding and decoding interfaces.
2828
#![feature(box_syntax)]
2929
#![feature(old_impl_check)]
3030
#![feature(slicing_syntax)]
31+
#![allow(unknown_features)] #![feature(int_uint)]
3132

3233
// test harness access
3334
#[cfg(test)] extern crate test;

branches/batch/src/libstd/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@
110110
#![feature(slicing_syntax, unboxed_closures)]
111111
#![feature(box_syntax)]
112112
#![feature(old_impl_check)]
113+
#![allow(unknown_features)] #![feature(int_uint)]
113114

114115
// Don't link to std. We are std.
115116
#![no_std]

branches/batch/src/libstd/macros.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ macro_rules! panic {
4444
($msg:expr) => ({
4545
$crate::rt::begin_unwind($msg, {
4646
// static requires less code at runtime, more constant data
47-
static _FILE_LINE: (&'static str, uint) = (file!(), line!());
47+
static _FILE_LINE: (&'static str, usize) = (file!(), line!());
4848
&_FILE_LINE
4949
})
5050
});
@@ -54,7 +54,7 @@ macro_rules! panic {
5454
// used inside a dead function. Just `#[allow(dead_code)]` is
5555
// insufficient, since the user may have
5656
// `#[forbid(dead_code)]` and which cannot be overridden.
57-
static _FILE_LINE: (&'static str, uint) = (file!(), line!());
57+
static _FILE_LINE: (&'static str, usize) = (file!(), line!());
5858
&_FILE_LINE
5959
})
6060
});
@@ -466,7 +466,7 @@ pub mod builtin {
466466

467467
/// A macro which expands to the line number on which it was invoked.
468468
///
469-
/// The expanded expression has type `uint`, and the returned line is not
469+
/// The expanded expression has type `usize`, and the returned line is not
470470
/// the invocation of the `line!()` macro itself, but rather the first macro
471471
/// invocation leading up to the invocation of the `line!()` macro.
472472
///
@@ -481,7 +481,7 @@ pub mod builtin {
481481

482482
/// A macro which expands to the column number on which it was invoked.
483483
///
484-
/// The expanded expression has type `uint`, and the returned column is not
484+
/// The expanded expression has type `usize`, and the returned column is not
485485
/// the invocation of the `column!()` macro itself, but rather the first macro
486486
/// invocation leading up to the invocation of the `column!()` macro.
487487
///

branches/batch/src/libsyntax/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
#![feature(slicing_syntax)]
2828
#![feature(box_syntax)]
2929
#![feature(quote, unsafe_destructor)]
30+
#![allow(unknown_features)] #![feature(int_uint)]
3031

3132
extern crate arena;
3233
extern crate fmt_macros;

branches/batch/src/libterm/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
#![allow(unknown_features)]
5252
#![feature(slicing_syntax)]
5353
#![feature(box_syntax)]
54+
#![allow(unknown_features)] #![feature(int_uint)]
5455
#![deny(missing_docs)]
5556

5657
#[macro_use] extern crate log;

branches/batch/src/libtest/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
#![allow(unknown_features)]
3535
#![feature(asm, slicing_syntax)]
3636
#![feature(box_syntax)]
37+
#![allow(unknown_features)] #![feature(int_uint)]
3738

3839
extern crate getopts;
3940
extern crate regex;

branches/batch/src/libunicode/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
html_playground_url = "http://play.rust-lang.org/")]
3131
#![no_std]
3232
#![feature(slicing_syntax)]
33+
#![allow(unknown_features)] #![feature(int_uint)]
3334

3435
extern crate core;
3536

0 commit comments

Comments
 (0)