diff options
| author | Martin Nordholts <martin.nordholts@codetale.se> | 2023-12-05 06:41:22 +0100 |
|---|---|---|
| committer | Martin Nordholts <martin.nordholts@codetale.se> | 2023-12-05 06:41:23 +0100 |
| commit | d7d867d9a4912f7566cd4db8b3129aa9adab8ffd (patch) | |
| tree | e9ee228fbb352742c1f49a7be3d8c06dbdc61b51 | |
| parent | ae2427d1e420d5bf9a6d64fd09ea9a376b9cd5e6 (diff) | |
| download | rust-d7d867d9a4912f7566cd4db8b3129aa9adab8ffd.tar.gz rust-d7d867d9a4912f7566cd4db8b3129aa9adab8ffd.zip | |
rustc_symbol_mangling: Address all `rustc::potential_query_instability` lints
Instead of allowing `rustc::potential_query_instability` on the whole crate we go over each lint and allow it individually if it is safe to do. Turns out there were no instances of this lint in this crate.
| -rw-r--r-- | compiler/rustc_symbol_mangling/src/lib.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/rustc_symbol_mangling/src/lib.rs b/compiler/rustc_symbol_mangling/src/lib.rs index 311b94d9e0e..8c035ba948b 100644 --- a/compiler/rustc_symbol_mangling/src/lib.rs +++ b/compiler/rustc_symbol_mangling/src/lib.rs @@ -93,7 +93,6 @@ #![allow(internal_features)] #![feature(never_type)] #![recursion_limit = "256"] -#![allow(rustc::potential_query_instability)] #![deny(rustc::untranslatable_diagnostic)] #![deny(rustc::diagnostic_outside_of_impl)] |
