1
Fork 0

Rollup merge of #48898 - GuillaumeGomez:remove-empty-section, r=QuietMisdreavus

Remove auto trait implementation section when empty

Fixes #48882.
This commit is contained in:
kennytm 2018-03-13 05:01:37 +08:00
commit e30d89d7a5
No known key found for this signature in database
GPG key ID: FEF6C8051D0E013C
2 changed files with 30 additions and 8 deletions

View file

@ -3181,14 +3181,16 @@ fn render_assoc_items(w: &mut fmt::Formatter,
render_impls(cx, w, concrete, containing_item)?;
write!(w, "</div>")?;
write!(w, "
<h2 id='synthetic-implementations' class='small-section-header'>
Auto Trait Implementations<a href='#synthetic-implementations' class='anchor'></a>
</h2>
<div id='synthetic-implementations-list'>
")?;
render_impls(cx, w, synthetic, containing_item)?;
write!(w, "</div>")?;
if !synthetic.is_empty() {
write!(w, "
<h2 id='synthetic-implementations' class='small-section-header'>
Auto Trait Implementations<a href='#synthetic-implementations' class='anchor'></a>
</h2>
<div id='synthetic-implementations-list'>
")?;
render_impls(cx, w, synthetic, containing_item)?;
write!(w, "</div>")?;
}
}
Ok(())
}