diff options
| author | Dylan DPC <dylan.dpc@gmail.com> | 2020-02-11 16:36:54 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-11 16:36:54 +0100 |
| commit | ec0cfd1d0150b3d9ba3d938b1d3d31cb6050524f (patch) | |
| tree | 06b301d80abbc994652b957e94f9a59a6a8b95b5 /src/librustc_data_structures | |
| parent | b6690a8c35e9afa3e0f65140cc69d4ba1b9e78c4 (diff) | |
| parent | 3e57a0afb57decd347fe9133dd3d37dd0fb5dbec (diff) | |
| download | rust-ec0cfd1d0150b3d9ba3d938b1d3d31cb6050524f.tar.gz rust-ec0cfd1d0150b3d9ba3d938b1d3d31cb6050524f.zip | |
Rollup merge of #66498 - bjorn3:less_feature_flags, r=Dylan-DPC
Remove unused feature gates I think many of the remaining unstable things can be easily be replaced with stable things. I have kept the `#![feature(nll)]` even though it is only necessary in `libstd`, to make regressions of it harder.
Diffstat (limited to 'src/librustc_data_structures')
| -rw-r--r-- | src/librustc_data_structures/lib.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/librustc_data_structures/lib.rs b/src/librustc_data_structures/lib.rs index aaac7fb4460..13792a0c890 100644 --- a/src/librustc_data_structures/lib.rs +++ b/src/librustc_data_structures/lib.rs @@ -12,7 +12,6 @@ #![feature(generators)] #![feature(generator_trait)] #![feature(fn_traits)] -#![feature(unsize)] #![feature(specialization)] #![feature(optin_builtin_traits)] #![feature(nll)] @@ -20,11 +19,9 @@ #![feature(hash_raw_entry)] #![feature(stmt_expr_attributes)] #![feature(core_intrinsics)] -#![feature(integer_atomics)] #![feature(test)] #![feature(associated_type_bounds)] #![feature(thread_id_value)] -#![cfg_attr(unix, feature(libc))] #![allow(rustc::default_hash_types)] #[macro_use] |
