-
Notifications
You must be signed in to change notification settings - Fork 12.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove unnecessary sort in rustc_metadata #131329
Remove unnecessary sort in rustc_metadata #131329
Conversation
Since it is an `IndexMap`, the order is guaranteed to be the same everytime.
d1c6a4b
to
3c41f7d
Compare
The job Click to see the possible cause of the failure (guessed by this bot)
|
@rustbot author |
There seems to be an issue here; even if the object is IndexMap, not calling So closing if you don't have an idea. |
A follow-up after #131145. Here the related object is
IndexMap
so do not require a sort to stay stable. And it doesn't need to bemut
anymore.Changed error outputs seem weird (file numbers and indices are not matching) but I don't know if it matters.
r? @compiler-errors