diff options
| author | est31 <MTest31@outlook.com> | 2020-09-17 07:08:34 +0200 |
|---|---|---|
| committer | est31 <MTest31@outlook.com> | 2020-09-17 07:08:53 +0200 |
| commit | 4fe6ca37898bcd65488764f2679e27c936879ade (patch) | |
| tree | 76807f79389ff97749afa3f833659f9e0300274d /compiler/rustc_data_structures | |
| parent | b47913962097874257ad10227b943ef7af85d49f (diff) | |
| download | rust-4fe6ca37898bcd65488764f2679e27c936879ade.tar.gz rust-4fe6ca37898bcd65488764f2679e27c936879ade.zip | |
Replace const_generics feature gate with min_const_generics
The latter is on the path to stabilization.
Diffstat (limited to 'compiler/rustc_data_structures')
| -rw-r--r-- | compiler/rustc_data_structures/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_data_structures/src/lib.rs b/compiler/rustc_data_structures/src/lib.rs index 88c160e93b6..b339261189b 100644 --- a/compiler/rustc_data_structures/src/lib.rs +++ b/compiler/rustc_data_structures/src/lib.rs @@ -26,7 +26,7 @@ #![feature(thread_id_value)] #![feature(extend_one)] #![feature(const_panic)] -#![feature(const_generics)] +#![feature(min_const_generics)] #![feature(once_cell)] #![allow(rustc::default_hash_types)] |
