-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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 the unecessary ParamBounds struct #26354
Conversation
|
||
fn parse_bounds_<'a, 'tcx, F>(st: &mut PState<'a, 'tcx>, conv: &mut F) | ||
-> ty::ParamBounds<'tcx> where | ||
fn parse_bounds<'a, 'tcx, F>(st: &mut PState<'a, 'tcx>, conv: &mut F) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For conventions sake I should probably change this back to parse_bounds_
, didn't realize the convention until I was looking over the change set.
this looks good. r+ when travis is pacified. |
@bors r+ |
📌 Commit dfb2ee3 has been approved by |
☔ The latest upstream changes (presumably #26351) made this pull request unmergeable. Please resolve the merge conflicts. |
🔒 Merge conflict |
@jroesch needs rebase... |
@nikomatsakis sorry about the hold up had to integrate with huge patch from eddyb. I also slightly cleaned up the code due to some changes in master, did a rebase and squash as well. |
dfb2ee3
to
81e5c1f
Compare
@bors r+ |
📌 Commit 81e5c1f has been approved by |
…akis This pull request removes `ParamBounds` a old holdover in the type checker that we (@nikomatsakis and I) had wanted to remove. I'm not sure if the current form is the best possible refactor but I figured we can use this as a place to discuss it. r? @nikomatsakis
This pull request removes
ParamBounds
a old holdover in the type checker that we (@nikomatsakis and I) had wanted to remove. I'm not sure if the current form is the best possible refactor but I figured we can use this as a place to discuss it.r? @nikomatsakis