about summary refs log tree commit diff
path: root/compiler/rustc_data_structures
diff options
context:
space:
mode:
authorest31 <MTest31@outlook.com>2020-09-17 07:08:34 +0200
committerest31 <MTest31@outlook.com>2020-09-17 07:08:53 +0200
commit4fe6ca37898bcd65488764f2679e27c936879ade (patch)
tree76807f79389ff97749afa3f833659f9e0300274d /compiler/rustc_data_structures
parentb47913962097874257ad10227b943ef7af85d49f (diff)
downloadrust-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.rs2
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)]