Skip to content

Commit 22d4ccf

Browse files
authored
Rollup merge of rust-lang#131192 - ismailarilik:handle-potential-query-instability-lint-for-rustc-query-impl, r=compiler-errors
Handle `rustc_query_impl` cases of `rustc::potential_query_instability` lint This PR removes `#![allow(rustc::potential_query_instability)]` line from [`compiler/rustc_query_impl/src/lib.rs`](https://github.com/rust-lang/rust/blob/master/compiler/rustc_query_impl/src/lib.rs#L5) <s>and converts `FxHash{Map,Set}` types into `FxIndex{Map,Set}` to suppress lint errors</s> (was not necessary for this PR). A somewhat tracking issue: rust-lang#84447 r? `@compiler-errors`
2 parents 8e39b29 + 83d0d9f commit 22d4ccf

File tree

1 file changed

+1
-1
lines changed
  • compiler/rustc_query_impl/src

1 file changed

+1
-1
lines changed

Diff for: compiler/rustc_query_impl/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
// tidy-alphabetical-start
44
#![allow(internal_features)]
5-
#![allow(rustc::potential_query_instability, unused_parens)]
5+
#![allow(unused_parens)]
66
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
77
#![doc(rust_logo)]
88
#![feature(min_specialization)]

0 commit comments

Comments
 (0)