about summary refs log tree commit diff
path: root/compiler/rustc_feature/src/unstable.rs
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2024-10-23 08:18:19 +0100
committerRalf Jung <post@ralfj.de>2024-10-23 09:14:43 +0100
commite82bca6f32bd74e018c8bd46fe33986eae514189 (patch)
treed1200d3032689eef799d045c8a71d9040686077b /compiler/rustc_feature/src/unstable.rs
parent6ad17bd30c68c90792cb0e4fca8208be41493f6b (diff)
downloadrust-e82bca6f32bd74e018c8bd46fe33986eae514189.tar.gz
rust-e82bca6f32bd74e018c8bd46fe33986eae514189.zip
remove no longer needd UnstableFeature type
Diffstat (limited to 'compiler/rustc_feature/src/unstable.rs')
-rw-r--r--compiler/rustc_feature/src/unstable.rs16
1 files changed, 5 insertions, 11 deletions
diff --git a/compiler/rustc_feature/src/unstable.rs b/compiler/rustc_feature/src/unstable.rs
index 93e91c0984c..9c6de079e2f 100644
--- a/compiler/rustc_feature/src/unstable.rs
+++ b/compiler/rustc_feature/src/unstable.rs
@@ -6,10 +6,6 @@ use rustc_span::symbol::{Symbol, sym};
 
 use super::{Feature, to_nonzero};
 
-pub struct UnstableFeature {
-    pub feature: Feature,
-}
-
 #[derive(PartialEq)]
 enum FeatureStatus {
     Default,
@@ -82,13 +78,11 @@ macro_rules! declare_features {
     )+) => {
         /// Unstable language features that are being implemented or being
         /// considered for acceptance (stabilization) or removal.
-        pub const UNSTABLE_FEATURES: &[UnstableFeature] = &[
-            $(UnstableFeature {
-                feature: Feature {
-                    name: sym::$feature,
-                    since: $ver,
-                    issue: to_nonzero($issue),
-                },
+        pub const UNSTABLE_FEATURES: &[Feature] = &[
+            $(Feature {
+                name: sym::$feature,
+                since: $ver,
+                issue: to_nonzero($issue),
             }),+
         ];