Uh oh!
There was an error while loading. Please reload this page.
Attributes on generic formals - #34764
Conversation
rust-highfive
commented
Jul 11, 2016
r? @sfackler (rust_highfive has picked a reviewer for you, use r? to override) |
eddyb
commented
Jul 11, 2016
bors
commented
Jul 11, 2016
📌 Commit 337073b has been approved by |
durka
commented
Jul 11, 2016
plugin-breaking, no? |
eddyb
commented
Jul 11, 2016
@bors r- Ah, yes, of course. Thanks @durka. @Manishearth r=me for the next breaking batch or whatnot. |
bors
commented
Jul 20, 2016
☔ The latest upstream changes (presumably #34113) made this pull request unmergeable. Please resolve the merge conflicts. |
d554c5b to
2605680CompareThere was a problem hiding this comment.
Why deref here, but not with the bounds?
There was a problem hiding this comment.
Its necessary (here and below) because &bounds is a &Vec while &attrs is a &ThinVec.
Right now, you cannot iterate over a &ThinVec directly; you need to deref the ThinVec to turn it into a [T] slice that you can then iterate over.
dns2utf8
commented
Jul 23, 2016
I wonder why you used deref with the |
eddyb
commented
Aug 1, 2016
ping @Manishearth |
Manishearth
commented
Aug 1, 2016
Oh, you need this merged? Cool, I'll start up a batch. (In the future, for high-pri or generally blocking/bitrotty things, please let me know that that's the case and I'll immediately initiate a breaking batch) |
bors
commented
Aug 12, 2016
☔ The latest upstream changes (presumably #35091) made this pull request unmergeable. Please resolve the merge conflicts. |
pnkfelix
commented
Sep 9, 2016
ping @Manishearth ; did you end up not starting up that batch? |
pnkfelix
commented
Sep 9, 2016
or maybe I should resolve the merge conflicts. I'll do that now. :) |
Manishearth
commented
Sep 9, 2016
The batch happened, but this PR wasn't in it, not sure why :/ |
2605680 to
115b74fComparebors
commented
Sep 10, 2016
☔ The latest upstream changes (presumably #36332) made this pull request unmergeable. Please resolve the merge conflicts. |
115b74f to
3a9b7beCompareI am using `ThinAttributes` rather than a vector for attributes attached to generics, since I expect almost all lifetime and types parameters to not carry any attributes.
…ached binding in generics.
pnkfelix
commented
Sep 24, 2016
ping @Manishearth |
Manishearth
commented
Sep 25, 2016
It's in the list. Traveling right now, can't shepherd the rollup |
…r=eddyb First step for rust-lang#34761
First step for #34761