diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2015-03-06 15:11:59 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2015-03-06 15:11:59 -0800 |
| commit | 1a30412ebf4363acf92f1edafa2c007617c94d02 (patch) | |
| tree | ed36909d72bf88aecff549eef3c9dadd92e3a9f4 | |
| parent | 16ff1401d8fb11b9c0f5fab8052b2a993ff93916 (diff) | |
| download | rust-1a30412ebf4363acf92f1edafa2c007617c94d02.tar.gz rust-1a30412ebf4363acf92f1edafa2c007617c94d02.zip | |
Suppress some warnings about features
| -rw-r--r-- | src/librustc/lib.rs | 2 | ||||
| -rw-r--r-- | src/librustc_trans/lib.rs | 1 | ||||
| -rw-r--r-- | src/librustdoc/lib.rs | 1 |
3 files changed, 4 insertions, 0 deletions
diff --git a/src/librustc/lib.rs b/src/librustc/lib.rs index be625affc2e..d39b14e6fee 100644 --- a/src/librustc/lib.rs +++ b/src/librustc/lib.rs @@ -44,7 +44,9 @@ #![feature(path)] #![feature(io)] #![feature(path_ext)] +#![feature(str_words)] #![cfg_attr(test, feature(test))] + extern crate arena; extern crate flate; extern crate fmt_macros; diff --git a/src/librustc_trans/lib.rs b/src/librustc_trans/lib.rs index 5f97709dd33..01076a4afa2 100644 --- a/src/librustc_trans/lib.rs +++ b/src/librustc_trans/lib.rs @@ -44,6 +44,7 @@ #![feature(os)] #![feature(path_ext)] #![feature(fs)] +#![feature(hash)] extern crate arena; extern crate flate; diff --git a/src/librustdoc/lib.rs b/src/librustdoc/lib.rs index 80584da265c..c203dc0e719 100644 --- a/src/librustdoc/lib.rs +++ b/src/librustdoc/lib.rs @@ -38,6 +38,7 @@ #![feature(str_words)] #![feature(io)] #![feature(path)] +#![feature(file_path)] #![feature(path_ext)] extern crate arena; |
