diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2018-03-09 22:18:08 +0100 |
|---|---|---|
| committer | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2018-03-09 22:18:08 +0100 |
| commit | 7dc71ec009ffce75142b2987374401b50a3a194c (patch) | |
| tree | a15b45c21228705ca224a1b82aa025771ee734fd /src/librustdoc/html/render.rs | |
| parent | fedce67cd21dc08ece5a484fe1a060346acac98a (diff) | |
| download | rust-7dc71ec009ffce75142b2987374401b50a3a194c.tar.gz rust-7dc71ec009ffce75142b2987374401b50a3a194c.zip | |
Remove auto trait implementation section when empty
Diffstat (limited to 'src/librustdoc/html/render.rs')
| -rw-r--r-- | src/librustdoc/html/render.rs | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/src/librustdoc/html/render.rs b/src/librustdoc/html/render.rs index 6945a6f3724..84f693a3be5 100644 --- a/src/librustdoc/html/render.rs +++ b/src/librustdoc/html/render.rs @@ -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(()) } |
