Skip to content

Commit 9ccd3ac

Browse files
leoyvenspetrochenkov
authored andcommitted
Fix rustdoc
1 parent 3bb2ff0 commit 9ccd3ac

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/librustdoc/clean/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,6 @@ impl Clean<Item> for doctree::Module {
480480
items.extend(self.traits.iter().map(|x| x.clean(cx)));
481481
items.extend(self.impls.iter().flat_map(|x| x.clean(cx)));
482482
items.extend(self.macros.iter().map(|x| x.clean(cx)));
483-
items.extend(self.def_traits.iter().map(|x| x.clean(cx)));
484483

485484
// determine if we should display the inner contents or
486485
// the outer `mod` item for the source code.

src/librustdoc/doctree.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ impl Module {
7272
constants : Vec::new(),
7373
traits : Vec::new(),
7474
impls : Vec::new(),
75-
def_traits : Vec::new(),
7675
foreigns : Vec::new(),
7776
macros : Vec::new(),
7877
is_crate : false,

0 commit comments

Comments
 (0)