Uh oh!
There was an error while loading. Please reload this page.
rustdoc: Fix duplicated impls with generics - #45620
Conversation
The same type can appear multiple times in impls so we need to use a set to avoid adding it multiple times.
rust-highfive
commented
Oct 29, 2017
r? @frewsxcv (rust_highfive has picked a reviewer for you, use r? to override) |
frewsxcv
commented
Oct 29, 2017
reassigning to someone from dev-tools team |
I think that the order won't be kept with only the set. You need both a |
frewsxcv
commented
Oct 30, 2017
I'm not sure about a |
QuietMisdreavus
commented
Oct 30, 2017
Right, but is that the order of the |
ollie27
commented
Oct 31, 2017
The order of what? This is just gathering |
carols10cents
commented
Nov 6, 2017
review ping @QuietMisdreavus or @GuillaumeGomez! |
QuietMisdreavus
commented
Nov 6, 2017
@bors r+ Sorry for letting this get stale! |
bors
commented
Nov 6, 2017
📌 Commit 676b4bb has been approved by |
…r=QuietMisdreavus rustdoc: Fix duplicated impls with generics The same type can appear multiple times in impls so we need to use a set to avoid adding it multiple times. Fixes: rust-lang#45584
bors
commented
Nov 7, 2017
…reavus rustdoc: Fix duplicated impls with generics The same type can appear multiple times in impls so we need to use a set to avoid adding it multiple times. Fixes: #45584
bors
commented
Nov 7, 2017
☀️ Test successful - status-appveyor, status-travis |
The same type can appear multiple times in impls so we need to use a set
to avoid adding it multiple times.
Fixes: #45584