This repository was archived by the owner on May 28, 2025. It is now read-only.
forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit 9ff5fc4
Auto merge of rust-lang#131145 - ismailarilik:handle_potential_query_instability_lint_for_rustc_metadata, r=compiler-errors
Handle `rustc_metadata` cases of `rustc::potential_query_instability` lint
This PR removes `#![allow(rustc::potential_query_instability)]` line from [`compiler/rustc_metadata/src/lib.rs`](https://github.com/rust-lang/rust/blob/master/compiler/rustc_metadata/src/lib.rs#L3) and converts `FxHash{Map,Set}` types into `FxIndex{Map,Set}` to suppress lint errors.
A somewhat tracking issue: rust-lang#84447 File tree
4 files changed
+14
-15
lines changed- compiler
- rustc_metadata/src
- rustc_middle/src/ty
- rustc_resolve/src
4 files changed
+14
-15
lines changedOriginal file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | 1 |
| |
2 | 2 |
| |
3 | - | ||
4 | 3 |
| |
5 | 4 |
| |
6 | 5 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
218 | 218 |
| |
219 | 219 |
| |
220 | 220 |
| |
221 | - | ||
221 | + | ||
222 | 222 |
| |
223 | 223 |
| |
224 | 224 |
| |
| |||
385 | 385 |
| |
386 | 386 |
| |
387 | 387 |
| |
388 | - | ||
388 | + | ||
389 | 389 |
| |
390 | 390 |
| |
391 | 391 |
| |
| |||
460 | 460 |
| |
461 | 461 |
| |
462 | 462 |
| |
463 | - | ||
463 | + | ||
464 | 464 |
| |
465 | 465 |
| |
466 | 466 |
| |
| |||
494 | 494 |
| |
495 | 495 |
| |
496 | 496 |
| |
497 | - | ||
498 | - | ||
499 | - | ||
497 | + | ||
498 | + | ||
499 | + | ||
500 | 500 |
| |
501 | 501 |
| |
502 | 502 |
| |
| |||
534 | 534 |
| |
535 | 535 |
| |
536 | 536 |
| |
537 | - | ||
537 | + | ||
538 | 538 |
| |
539 | 539 |
| |
540 | 540 |
| |
| |||
702 | 702 |
| |
703 | 703 |
| |
704 | 704 |
| |
705 | - | ||
706 | - | ||
707 | - | ||
705 | + | ||
706 | + | ||
707 | + | ||
708 | 708 |
| |
709 | 709 |
| |
710 | 710 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
187 | 187 |
| |
188 | 188 |
| |
189 | 189 |
| |
190 | - | ||
191 | - | ||
190 | + | ||
191 | + | ||
192 | 192 |
| |
193 | 193 |
| |
194 | 194 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1196 | 1196 |
| |
1197 | 1197 |
| |
1198 | 1198 |
| |
1199 | - | ||
1200 | - | ||
1199 | + | ||
1200 | + | ||
1201 | 1201 |
| |
1202 | 1202 |
| |
1203 | 1203 |
| |
|
0 commit comments