diff options
| author | Ralf Jung <post@ralfj.de> | 2024-10-23 08:18:19 +0100 | 
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2024-10-23 09:14:43 +0100 | 
| commit | e82bca6f32bd74e018c8bd46fe33986eae514189 (patch) | |
| tree | d1200d3032689eef799d045c8a71d9040686077b /compiler/rustc_query_system/src | |
| parent | 6ad17bd30c68c90792cb0e4fca8208be41493f6b (diff) | |
| download | rust-e82bca6f32bd74e018c8bd46fe33986eae514189.tar.gz rust-e82bca6f32bd74e018c8bd46fe33986eae514189.zip | |
remove no longer needd UnstableFeature type
Diffstat (limited to 'compiler/rustc_query_system/src')
| -rw-r--r-- | compiler/rustc_query_system/src/ich/impls_syntax.rs | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/compiler/rustc_query_system/src/ich/impls_syntax.rs b/compiler/rustc_query_system/src/ich/impls_syntax.rs index 68b16a12910..52dd336313a 100644 --- a/compiler/rustc_query_system/src/ich/impls_syntax.rs +++ b/compiler/rustc_query_system/src/ich/impls_syntax.rs @@ -117,7 +117,7 @@ impl<'tcx> HashStable<StableHashingContext<'tcx>> for rustc_feature::Features { // FIXME: why do we hash something that is a compile-time constant? for feature in rustc_feature::UNSTABLE_FEATURES.iter() { - feature.feature.name.hash_stable(hcx, hasher); + feature.name.hash_stable(hcx, hasher); } } } | 
