diff options
| author | Brian Anderson <banderson@mozilla.com> | 2015-01-16 22:33:24 -0800 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2015-01-17 16:38:04 -0800 |
| commit | 6f3a80e4117af4e2c167101fb4fdba35d3e1f7eb (patch) | |
| tree | 7701c03028179de3769bac2c84f04d4e214e1963 /src/libstd | |
| parent | 056f8f02516da6e878a00549f9b2a0d68e6bcad8 (diff) | |
| download | rust-6f3a80e4117af4e2c167101fb4fdba35d3e1f7eb.tar.gz rust-6f3a80e4117af4e2c167101fb4fdba35d3e1f7eb.zip | |
Set allow(unstable) in crates that use unstable features
Lets them build with the -dev, -nightly, or snapshot compiler
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index 2553bbdf523..ddb8129630f 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -112,6 +112,8 @@ #![feature(old_impl_check)] #![feature(optin_builtin_traits)] #![feature(int_uint)] +#![feature(int_uint)] +#![allow(unstable)] // Don't link to std. We are std. #![no_std] |
