-
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
Remove refs from Pat slices #87140
Remove refs from Pat slices #87140
Conversation
Some changes occurred in src/tools/clippy. cc @rust-lang/clippy |
r? @nagisa (rust-highfive has picked a reviewer for you, use r? to override) |
5b70495
to
4b10218
Compare
@rust-timer queue |
Insufficient permissions to issue commands to rust-timer. |
@bors try @rust-timer queue |
Awaiting bors try build completion. @rustbot label: +S-waiting-on-perf |
⌛ Trying commit 4b10218 with merge cd6663f81419d3f4ed7b8dccfa7ddf90c489ce90... |
☀️ Try build successful - checks-actions |
Queued cd6663f81419d3f4ed7b8dccfa7ddf90c489ce90 with parent e87188c, future comparison URL. |
Finished benchmarking try commit (cd6663f81419d3f4ed7b8dccfa7ddf90c489ce90): comparison url. Summary: This benchmark run did not return any significant changes. If you disagree with this performance assessment, please file an issue in rust-lang/rustc-perf. Benchmarking this pull request likely means that it is perf-sensitive, so we're automatically marking it as not fit for rolling up. @bors rollup=never |
This comment has been minimized.
This comment has been minimized.
81fa2e0
to
adcda69
Compare
This comment has been minimized.
This comment has been minimized.
adcda69
to
4b10218
Compare
Tried to remove another ref but it looks like I can't so reverted. |
@bors r+ |
📌 Commit 4b10218 has been approved by |
@bors rollup- |
Remove refs from Pat slices Changes `PatKind::Or(&'hir [&'hir Pat<'hir>])` to `PatKind::Or(&'hir [Pat<'hir>])` and others. This is more consistent with `ExprKind`, saves a little memory, and is a little easier to use.
There is a conflict to be resolved. @bors: r- |
☔ The latest upstream changes (presumably #87152) made this pull request unmergeable. Please resolve the merge conflicts. |
4b10218
to
1537cd4
Compare
@bors r+ |
📌 Commit 1537cd4 has been approved by |
☀️ Test successful - checks-actions |
Remove refs from Pat slices Changes `PatKind::Or(&'hir [&'hir Pat<'hir>])` to `PatKind::Or(&'hir [Pat<'hir>])` and others. This is more consistent with `ExprKind`, saves a little memory, and is a little easier to use.
Changes
PatKind::Or(&'hir [&'hir Pat<'hir>])
toPatKind::Or(&'hir [Pat<'hir>])
and others. This is more consistent withExprKind
, saves a little memory, and is a little easier to use.