Remove warning from the libraries.
This adds the int_uint feature to *every* library, whether or not it needs it.
This commit is contained in:
parent
d12514bc58
commit
4f5a57e80e
32 changed files with 37 additions and 8 deletions
|
@ -12,6 +12,7 @@
|
||||||
#![allow(unknown_features)]
|
#![allow(unknown_features)]
|
||||||
#![feature(slicing_syntax, unboxed_closures)]
|
#![feature(slicing_syntax, unboxed_closures)]
|
||||||
#![feature(box_syntax)]
|
#![feature(box_syntax)]
|
||||||
|
#![feature(int_uint)]
|
||||||
|
|
||||||
#![deny(warnings)]
|
#![deny(warnings)]
|
||||||
|
|
||||||
|
|
|
@ -68,6 +68,7 @@
|
||||||
#![allow(unknown_features)]
|
#![allow(unknown_features)]
|
||||||
#![feature(lang_items, unsafe_destructor)]
|
#![feature(lang_items, unsafe_destructor)]
|
||||||
#![feature(box_syntax)]
|
#![feature(box_syntax)]
|
||||||
|
#![allow(unknown_features)] #![feature(int_uint)]
|
||||||
|
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
extern crate core;
|
extern crate core;
|
||||||
|
|
|
@ -32,6 +32,7 @@
|
||||||
#![feature(unsafe_destructor)]
|
#![feature(unsafe_destructor)]
|
||||||
#![feature(unboxed_closures)]
|
#![feature(unboxed_closures)]
|
||||||
#![feature(box_syntax)]
|
#![feature(box_syntax)]
|
||||||
|
#![allow(unknown_features)] #![feature(int_uint)]
|
||||||
#![allow(missing_docs)]
|
#![allow(missing_docs)]
|
||||||
|
|
||||||
extern crate alloc;
|
extern crate alloc;
|
||||||
|
|
|
@ -27,6 +27,7 @@
|
||||||
#![feature(box_syntax)]
|
#![feature(box_syntax)]
|
||||||
#![feature(unboxed_closures)]
|
#![feature(unboxed_closures)]
|
||||||
#![feature(old_impl_check)]
|
#![feature(old_impl_check)]
|
||||||
|
#![allow(unknown_features)] #![feature(int_uint)]
|
||||||
#![no_std]
|
#![no_std]
|
||||||
|
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
|
|
|
@ -59,9 +59,10 @@
|
||||||
#![no_std]
|
#![no_std]
|
||||||
#![allow(unknown_features, raw_pointer_derive)]
|
#![allow(unknown_features, raw_pointer_derive)]
|
||||||
#![cfg_attr(stage0, allow(unused_attributes))]
|
#![cfg_attr(stage0, allow(unused_attributes))]
|
||||||
#![feature(intrinsics, lang_items)]
|
#![allow(unknown_features)] #![feature(intrinsics, lang_items)]
|
||||||
#![feature(simd, unsafe_destructor, slicing_syntax)]
|
#![feature(simd, unsafe_destructor, slicing_syntax)]
|
||||||
#![feature(unboxed_closures)]
|
#![feature(unboxed_closures)]
|
||||||
|
#![allow(unknown_features)] #![feature(int_uint)]
|
||||||
#![deny(missing_docs)]
|
#![deny(missing_docs)]
|
||||||
|
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
|
|
|
@ -15,7 +15,7 @@ macro_rules! panic {
|
||||||
panic!("explicit panic")
|
panic!("explicit panic")
|
||||||
);
|
);
|
||||||
($msg:expr) => ({
|
($msg:expr) => ({
|
||||||
static _MSG_FILE_LINE: (&'static str, &'static str, uint) = ($msg, file!(), line!());
|
static _MSG_FILE_LINE: (&'static str, &'static str, usize) = ($msg, file!(), line!());
|
||||||
::core::panicking::panic(&_MSG_FILE_LINE)
|
::core::panicking::panic(&_MSG_FILE_LINE)
|
||||||
});
|
});
|
||||||
($fmt:expr, $($arg:tt)*) => ({
|
($fmt:expr, $($arg:tt)*) => ({
|
||||||
|
@ -23,7 +23,7 @@ macro_rules! panic {
|
||||||
// used inside a dead function. Just `#[allow(dead_code)]` is
|
// used inside a dead function. Just `#[allow(dead_code)]` is
|
||||||
// insufficient, since the user may have
|
// insufficient, since the user may have
|
||||||
// `#[forbid(dead_code)]` and which cannot be overridden.
|
// `#[forbid(dead_code)]` and which cannot be overridden.
|
||||||
static _FILE_LINE: (&'static str, uint) = (file!(), line!());
|
static _FILE_LINE: (&'static str, usize) = (file!(), line!());
|
||||||
::core::panicking::panic_fmt(format_args!($fmt, $($arg)*), &_FILE_LINE)
|
::core::panicking::panic_fmt(format_args!($fmt, $($arg)*), &_FILE_LINE)
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,6 +11,7 @@
|
||||||
#![feature(unsafe_destructor, slicing_syntax)]
|
#![feature(unsafe_destructor, slicing_syntax)]
|
||||||
#![feature(unboxed_closures)]
|
#![feature(unboxed_closures)]
|
||||||
#![feature(box_syntax)]
|
#![feature(box_syntax)]
|
||||||
|
#![allow(unknown_features)] #![feature(int_uint)]
|
||||||
|
|
||||||
extern crate core;
|
extern crate core;
|
||||||
extern crate test;
|
extern crate test;
|
||||||
|
|
|
@ -17,6 +17,7 @@
|
||||||
#![crate_name = "flate"]
|
#![crate_name = "flate"]
|
||||||
#![experimental]
|
#![experimental]
|
||||||
#![staged_api]
|
#![staged_api]
|
||||||
|
#![allow(unknown_features)] #![feature(int_uint)]
|
||||||
#![crate_type = "rlib"]
|
#![crate_type = "rlib"]
|
||||||
#![crate_type = "dylib"]
|
#![crate_type = "dylib"]
|
||||||
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
|
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
|
||||||
|
|
|
@ -25,6 +25,7 @@
|
||||||
html_playground_url = "http://play.rust-lang.org/")]
|
html_playground_url = "http://play.rust-lang.org/")]
|
||||||
|
|
||||||
#![feature(slicing_syntax)]
|
#![feature(slicing_syntax)]
|
||||||
|
#![allow(unknown_features)] #![feature(int_uint)]
|
||||||
|
|
||||||
pub use self::Piece::*;
|
pub use self::Piece::*;
|
||||||
pub use self::Position::*;
|
pub use self::Position::*;
|
||||||
|
|
|
@ -87,6 +87,7 @@
|
||||||
html_root_url = "http://doc.rust-lang.org/nightly/",
|
html_root_url = "http://doc.rust-lang.org/nightly/",
|
||||||
html_playground_url = "http://play.rust-lang.org/")]
|
html_playground_url = "http://play.rust-lang.org/")]
|
||||||
#![feature(slicing_syntax)]
|
#![feature(slicing_syntax)]
|
||||||
|
#![allow(unknown_features)] #![feature(int_uint)]
|
||||||
#![deny(missing_docs)]
|
#![deny(missing_docs)]
|
||||||
|
|
||||||
#[cfg(test)] #[macro_use] extern crate log;
|
#[cfg(test)] #[macro_use] extern crate log;
|
||||||
|
|
|
@ -273,6 +273,7 @@
|
||||||
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
|
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
|
||||||
html_root_url = "http://doc.rust-lang.org/nightly/")]
|
html_root_url = "http://doc.rust-lang.org/nightly/")]
|
||||||
#![feature(slicing_syntax)]
|
#![feature(slicing_syntax)]
|
||||||
|
#![allow(unknown_features)] #![feature(int_uint)]
|
||||||
|
|
||||||
use self::LabelText::*;
|
use self::LabelText::*;
|
||||||
|
|
||||||
|
|
|
@ -12,6 +12,7 @@
|
||||||
#![crate_type = "rlib"]
|
#![crate_type = "rlib"]
|
||||||
#![cfg_attr(not(feature = "cargo-build"), experimental)]
|
#![cfg_attr(not(feature = "cargo-build"), experimental)]
|
||||||
#![cfg_attr(not(feature = "cargo-build"), staged_api)]
|
#![cfg_attr(not(feature = "cargo-build"), staged_api)]
|
||||||
|
#![allow(unknown_features)] #![feature(int_uint)]
|
||||||
#![no_std]
|
#![no_std]
|
||||||
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
|
#![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_favicon_url = "http://www.rust-lang.org/favicon.ico",
|
||||||
|
|
|
@ -168,6 +168,7 @@
|
||||||
#![allow(unknown_features)]
|
#![allow(unknown_features)]
|
||||||
#![feature(slicing_syntax)]
|
#![feature(slicing_syntax)]
|
||||||
#![feature(box_syntax)]
|
#![feature(box_syntax)]
|
||||||
|
#![allow(unknown_features)] #![feature(int_uint)]
|
||||||
#![deny(missing_docs)]
|
#![deny(missing_docs)]
|
||||||
|
|
||||||
extern crate regex;
|
extern crate regex;
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
|
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
|
||||||
html_root_url = "http://doc.rust-lang.org/nightly/",
|
html_root_url = "http://doc.rust-lang.org/nightly/",
|
||||||
html_playground_url = "http://play.rust-lang.org/")]
|
html_playground_url = "http://play.rust-lang.org/")]
|
||||||
|
#![allow(unknown_features)] #![feature(int_uint)]
|
||||||
#![no_std]
|
#![no_std]
|
||||||
#![experimental]
|
#![experimental]
|
||||||
#![staged_api]
|
#![staged_api]
|
||||||
|
|
|
@ -26,6 +26,7 @@
|
||||||
html_playground_url = "http://play.rust-lang.org/")]
|
html_playground_url = "http://play.rust-lang.org/")]
|
||||||
#![allow(unknown_features)]
|
#![allow(unknown_features)]
|
||||||
#![feature(slicing_syntax)]
|
#![feature(slicing_syntax)]
|
||||||
|
#![allow(unknown_features)] #![feature(int_uint)]
|
||||||
|
|
||||||
extern crate serialize;
|
extern crate serialize;
|
||||||
#[macro_use] extern crate log;
|
#[macro_use] extern crate log;
|
||||||
|
|
|
@ -26,6 +26,7 @@
|
||||||
#![allow(unknown_features)]
|
#![allow(unknown_features)]
|
||||||
#![feature(slicing_syntax)]
|
#![feature(slicing_syntax)]
|
||||||
#![feature(box_syntax)]
|
#![feature(box_syntax)]
|
||||||
|
#![allow(unknown_features)] #![feature(int_uint)]
|
||||||
#![deny(missing_docs)]
|
#![deny(missing_docs)]
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
|
|
|
@ -27,6 +27,7 @@
|
||||||
#![feature(quote)]
|
#![feature(quote)]
|
||||||
#![feature(slicing_syntax, unsafe_destructor)]
|
#![feature(slicing_syntax, unsafe_destructor)]
|
||||||
#![feature(box_syntax)]
|
#![feature(box_syntax)]
|
||||||
|
#![allow(unknown_features)] #![feature(int_uint)]
|
||||||
#![feature(rustc_diagnostic_macros)]
|
#![feature(rustc_diagnostic_macros)]
|
||||||
#![feature(old_impl_check)]
|
#![feature(old_impl_check)]
|
||||||
|
|
||||||
|
|
|
@ -31,6 +31,7 @@
|
||||||
html_root_url = "http://doc.rust-lang.org/nightly/")]
|
html_root_url = "http://doc.rust-lang.org/nightly/")]
|
||||||
#![allow(unknown_features)]
|
#![allow(unknown_features)]
|
||||||
#![feature(slicing_syntax, box_syntax)]
|
#![feature(slicing_syntax, box_syntax)]
|
||||||
|
#![allow(unknown_features)] #![feature(int_uint)]
|
||||||
|
|
||||||
extern crate syntax;
|
extern crate syntax;
|
||||||
extern crate serialize;
|
extern crate serialize;
|
||||||
|
|
|
@ -21,6 +21,7 @@
|
||||||
#![feature(quote)]
|
#![feature(quote)]
|
||||||
#![feature(slicing_syntax, unsafe_destructor)]
|
#![feature(slicing_syntax, unsafe_destructor)]
|
||||||
#![feature(rustc_diagnostic_macros)]
|
#![feature(rustc_diagnostic_macros)]
|
||||||
|
#![allow(unknown_features)] #![feature(int_uint)]
|
||||||
#![allow(non_camel_case_types)]
|
#![allow(non_camel_case_types)]
|
||||||
|
|
||||||
#[macro_use] extern crate log;
|
#[macro_use] extern crate log;
|
||||||
|
|
|
@ -28,6 +28,7 @@
|
||||||
#![feature(slicing_syntax, unsafe_destructor)]
|
#![feature(slicing_syntax, unsafe_destructor)]
|
||||||
#![feature(box_syntax)]
|
#![feature(box_syntax)]
|
||||||
#![feature(rustc_diagnostic_macros)]
|
#![feature(rustc_diagnostic_macros)]
|
||||||
|
#![allow(unknown_features)] #![feature(int_uint)]
|
||||||
|
|
||||||
extern crate arena;
|
extern crate arena;
|
||||||
extern crate flate;
|
extern crate flate;
|
||||||
|
|
|
@ -25,6 +25,7 @@
|
||||||
#![allow(unknown_features)]
|
#![allow(unknown_features)]
|
||||||
#![feature(link_args)]
|
#![feature(link_args)]
|
||||||
#![feature(box_syntax)]
|
#![feature(box_syntax)]
|
||||||
|
#![allow(unknown_features)] #![feature(int_uint)]
|
||||||
|
|
||||||
extern crate libc;
|
extern crate libc;
|
||||||
|
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
|
|
||||||
#![feature(slicing_syntax)]
|
#![feature(slicing_syntax)]
|
||||||
#![feature(rustc_diagnostic_macros)]
|
#![feature(rustc_diagnostic_macros)]
|
||||||
|
#![allow(unknown_features)] #![feature(int_uint)]
|
||||||
|
|
||||||
#[macro_use] extern crate log;
|
#[macro_use] extern crate log;
|
||||||
#[macro_use] extern crate syntax;
|
#[macro_use] extern crate syntax;
|
||||||
|
|
|
@ -28,6 +28,7 @@
|
||||||
#![feature(slicing_syntax, unsafe_destructor)]
|
#![feature(slicing_syntax, unsafe_destructor)]
|
||||||
#![feature(box_syntax)]
|
#![feature(box_syntax)]
|
||||||
#![feature(rustc_diagnostic_macros)]
|
#![feature(rustc_diagnostic_macros)]
|
||||||
|
#![allow(unknown_features)] #![feature(int_uint)]
|
||||||
|
|
||||||
extern crate arena;
|
extern crate arena;
|
||||||
extern crate flate;
|
extern crate flate;
|
||||||
|
|
|
@ -77,6 +77,7 @@ This API is completely unstable and subject to change.
|
||||||
#![feature(slicing_syntax, unsafe_destructor)]
|
#![feature(slicing_syntax, unsafe_destructor)]
|
||||||
#![feature(box_syntax)]
|
#![feature(box_syntax)]
|
||||||
#![feature(rustc_diagnostic_macros)]
|
#![feature(rustc_diagnostic_macros)]
|
||||||
|
#![allow(unknown_features)] #![feature(int_uint)]
|
||||||
#![allow(non_camel_case_types)]
|
#![allow(non_camel_case_types)]
|
||||||
|
|
||||||
#[macro_use] extern crate log;
|
#[macro_use] extern crate log;
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
html_playground_url = "http://play.rust-lang.org/")]
|
html_playground_url = "http://play.rust-lang.org/")]
|
||||||
#![feature(slicing_syntax)]
|
#![feature(slicing_syntax)]
|
||||||
#![feature(box_syntax)]
|
#![feature(box_syntax)]
|
||||||
|
#![allow(unknown_features)] #![feature(int_uint)]
|
||||||
|
|
||||||
extern crate arena;
|
extern crate arena;
|
||||||
extern crate getopts;
|
extern crate getopts;
|
||||||
|
|
|
@ -28,6 +28,7 @@ Core encoding and decoding interfaces.
|
||||||
#![feature(box_syntax)]
|
#![feature(box_syntax)]
|
||||||
#![feature(old_impl_check)]
|
#![feature(old_impl_check)]
|
||||||
#![feature(slicing_syntax)]
|
#![feature(slicing_syntax)]
|
||||||
|
#![allow(unknown_features)] #![feature(int_uint)]
|
||||||
|
|
||||||
// test harness access
|
// test harness access
|
||||||
#[cfg(test)] extern crate test;
|
#[cfg(test)] extern crate test;
|
||||||
|
|
|
@ -110,6 +110,7 @@
|
||||||
#![feature(slicing_syntax, unboxed_closures)]
|
#![feature(slicing_syntax, unboxed_closures)]
|
||||||
#![feature(box_syntax)]
|
#![feature(box_syntax)]
|
||||||
#![feature(old_impl_check)]
|
#![feature(old_impl_check)]
|
||||||
|
#![allow(unknown_features)] #![feature(int_uint)]
|
||||||
|
|
||||||
// Don't link to std. We are std.
|
// Don't link to std. We are std.
|
||||||
#![no_std]
|
#![no_std]
|
||||||
|
|
|
@ -44,7 +44,7 @@ macro_rules! panic {
|
||||||
($msg:expr) => ({
|
($msg:expr) => ({
|
||||||
$crate::rt::begin_unwind($msg, {
|
$crate::rt::begin_unwind($msg, {
|
||||||
// static requires less code at runtime, more constant data
|
// static requires less code at runtime, more constant data
|
||||||
static _FILE_LINE: (&'static str, uint) = (file!(), line!());
|
static _FILE_LINE: (&'static str, usize) = (file!(), line!());
|
||||||
&_FILE_LINE
|
&_FILE_LINE
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
|
@ -54,7 +54,7 @@ macro_rules! panic {
|
||||||
// used inside a dead function. Just `#[allow(dead_code)]` is
|
// used inside a dead function. Just `#[allow(dead_code)]` is
|
||||||
// insufficient, since the user may have
|
// insufficient, since the user may have
|
||||||
// `#[forbid(dead_code)]` and which cannot be overridden.
|
// `#[forbid(dead_code)]` and which cannot be overridden.
|
||||||
static _FILE_LINE: (&'static str, uint) = (file!(), line!());
|
static _FILE_LINE: (&'static str, usize) = (file!(), line!());
|
||||||
&_FILE_LINE
|
&_FILE_LINE
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
|
@ -466,7 +466,7 @@ pub mod builtin {
|
||||||
|
|
||||||
/// A macro which expands to the line number on which it was invoked.
|
/// A macro which expands to the line number on which it was invoked.
|
||||||
///
|
///
|
||||||
/// The expanded expression has type `uint`, and the returned line is not
|
/// The expanded expression has type `usize`, and the returned line is not
|
||||||
/// the invocation of the `line!()` macro itself, but rather the first macro
|
/// the invocation of the `line!()` macro itself, but rather the first macro
|
||||||
/// invocation leading up to the invocation of the `line!()` macro.
|
/// invocation leading up to the invocation of the `line!()` macro.
|
||||||
///
|
///
|
||||||
|
@ -481,7 +481,7 @@ pub mod builtin {
|
||||||
|
|
||||||
/// A macro which expands to the column number on which it was invoked.
|
/// A macro which expands to the column number on which it was invoked.
|
||||||
///
|
///
|
||||||
/// The expanded expression has type `uint`, and the returned column is not
|
/// The expanded expression has type `usize`, and the returned column is not
|
||||||
/// the invocation of the `column!()` macro itself, but rather the first macro
|
/// the invocation of the `column!()` macro itself, but rather the first macro
|
||||||
/// invocation leading up to the invocation of the `column!()` macro.
|
/// invocation leading up to the invocation of the `column!()` macro.
|
||||||
///
|
///
|
||||||
|
|
|
@ -27,6 +27,7 @@
|
||||||
#![feature(slicing_syntax)]
|
#![feature(slicing_syntax)]
|
||||||
#![feature(box_syntax)]
|
#![feature(box_syntax)]
|
||||||
#![feature(quote, unsafe_destructor)]
|
#![feature(quote, unsafe_destructor)]
|
||||||
|
#![allow(unknown_features)] #![feature(int_uint)]
|
||||||
|
|
||||||
extern crate arena;
|
extern crate arena;
|
||||||
extern crate fmt_macros;
|
extern crate fmt_macros;
|
||||||
|
|
|
@ -51,6 +51,7 @@
|
||||||
#![allow(unknown_features)]
|
#![allow(unknown_features)]
|
||||||
#![feature(slicing_syntax)]
|
#![feature(slicing_syntax)]
|
||||||
#![feature(box_syntax)]
|
#![feature(box_syntax)]
|
||||||
|
#![allow(unknown_features)] #![feature(int_uint)]
|
||||||
#![deny(missing_docs)]
|
#![deny(missing_docs)]
|
||||||
|
|
||||||
#[macro_use] extern crate log;
|
#[macro_use] extern crate log;
|
||||||
|
|
|
@ -34,6 +34,7 @@
|
||||||
#![allow(unknown_features)]
|
#![allow(unknown_features)]
|
||||||
#![feature(asm, slicing_syntax)]
|
#![feature(asm, slicing_syntax)]
|
||||||
#![feature(box_syntax)]
|
#![feature(box_syntax)]
|
||||||
|
#![allow(unknown_features)] #![feature(int_uint)]
|
||||||
|
|
||||||
extern crate getopts;
|
extern crate getopts;
|
||||||
extern crate regex;
|
extern crate regex;
|
||||||
|
|
|
@ -30,6 +30,7 @@
|
||||||
html_playground_url = "http://play.rust-lang.org/")]
|
html_playground_url = "http://play.rust-lang.org/")]
|
||||||
#![no_std]
|
#![no_std]
|
||||||
#![feature(slicing_syntax)]
|
#![feature(slicing_syntax)]
|
||||||
|
#![allow(unknown_features)] #![feature(int_uint)]
|
||||||
|
|
||||||
extern crate core;
|
extern crate core;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue