-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
Replace some uses of NodeId with HirId #61836
Conversation
r? @varkor (rust_highfive has picked a reviewer for you, use r? to override) |
e805bea
to
95322ab
Compare
☔ The latest upstream changes (presumably #61817) made this pull request unmergeable. Please resolve the merge conflicts. |
95322ab
to
9c280d6
Compare
The job Click to expand the log.
I'm a bot! I can only do what humans tell me to, so if this was not helpful or you have suggestions for improvements, please ping or otherwise contact |
46759d2
to
d22807f
Compare
☔ The latest upstream changes (presumably #61857) made this pull request unmergeable. Please resolve the merge conflicts. |
d22807f
to
61e004d
Compare
r=me with the extra space removed @bors delegate+ |
✌️ @ljedrz can now approve this pull request |
@bors p=1 |
The pre-space build is green, I don't think it will change ^^. @bors r=Zoxc |
📌 Commit e1bf56d has been approved by |
Replace some uses of NodeId with HirId We are still using `NodeId` in some spots where we could use `HirId` instead; this PR targets some of these spots and removes some of the associated `hir::map` functions.
@Zoxc whoops, I forgot to do r=; can still I adjust it after r+ing? |
💡 This pull request was already approved, no need to approve it again.
|
📌 Commit e1bf56d has been approved by |
I guess I can 🙂 . |
But it doesn't matter once the PR is in a rollup because merge commit has already been made ^^ |
Rollup of 5 pull requests Successful merges: - #61702 (test more variants of enum-int-casting) - #61836 (Replace some uses of NodeId with HirId) - #61885 (Help LLVM better optimize slice::Iter(Mut)::len) - #61893 (make `Weak::ptr_eq`s into methods) - #61908 (don't ICE on large files) Failed merges: r? @ghost
rustup rust-lang/rust#61836 changelog: none
Changes: ```` rustup rust-lang#61836 fix suggestion for floating points inequality ````
Changes: ```` rustup rust-lang/rust#61836 fix suggestion for floating points inequality ````
We are still using
NodeId
in some spots where we could useHirId
instead; this PR targets some of these spots and removes some of the associatedhir::map
functions.