Remove useless clean::Variant struct#81033
Merged
bors merged 2 commits intorust-lang:masterfrom Jan 16, 2021
Merged
Conversation
Collaborator
|
The job Click to see the possible cause of the failure (guessed by this bot) |
7060d07 to
b18240f
Compare
CraftSpider
approved these changes
Jan 15, 2021
Contributor
CraftSpider
left a comment
There was a problem hiding this comment.
One question about naming, but not a necessary change. Otherwise looks good to me.
Member
Author
|
@bors r=CraftSpider rollup Thanks for the review! |
Collaborator
|
📌 Commit 638d4aaafb30052baa8905c6473de44d12e7c8bf has been approved by |
bors
added a commit
to rust-lang-ci/rust
that referenced
this pull request
Jan 15, 2021
Rollup of 5 pull requests Successful merges: - rust-lang#80254 (Don't try to add nested predicate to Rustdoc auto-trait `ParamEnv`) - rust-lang#80834 (Remove unreachable panics from VecDeque::{front/back}[_mut]) - rust-lang#80944 (Use Option::map_or instead of `.map(..).unwrap_or(..)`) - rust-lang#81008 (Don't ICE when computing a layout of a generator tainted by errors) - rust-lang#81023 (Remove doctree::Variant) Failed merges: - rust-lang#81033 (Remove useless `clean::Variant` struct) r? `@ghost` `@rustbot` modify labels: rollup
Collaborator
|
☔ The latest upstream changes (presumably #81035) made this pull request unmergeable. Please resolve the merge conflicts. |
It had exactly one field and no special behavior, so there was no point.
There's no `Variant`, so it seems silly to have `Kind`.
638d4aa to
d11855a
Compare
Member
Author
|
@bors r=CraftSpider rollup |
Collaborator
|
📌 Commit d11855a has been approved by |
bors
added a commit
to rust-lang-ci/rust
that referenced
this pull request
Jan 16, 2021
…laumeGomez Rollup of 6 pull requests Successful merges: - rust-lang#77693 (Add test for rust-lang#59352) - rust-lang#80515 (Improve JS performance by storing length before comparing to it in loops) - rust-lang#81030 (Update mdbook) - rust-lang#81033 (Remove useless `clean::Variant` struct) - rust-lang#81049 (inline: Round word-size cost estimates up) - rust-lang#81054 (Drop a few unneeded borrows) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
It had exactly one field and no special behavior, so there was no point in having it.
r? @CraftSpider