diff options
| author | Oliver Middleton <olliemail27@gmail.com> | 2016-06-03 22:59:45 +0100 |
|---|---|---|
| committer | Oliver Middleton <olliemail27@gmail.com> | 2016-06-03 22:59:45 +0100 |
| commit | 4ddb541818dd700fdbee8e569ad53e3a24cefc04 (patch) | |
| tree | a12d4396e0bf93353363fe35ee31e15b9d992c88 /src/librustdoc/html | |
| parent | 433d70cda2e6d61d5bbb20423f0937a643cf34b4 (diff) | |
rustdoc: Fix generating redirect pages for statics and consts
These were missing from the cache for some reason meaning the redirect pages failed to render.
Diffstat (limited to 'src/librustdoc/html')
| -rw-r--r-- | src/librustdoc/html/render.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/librustdoc/html/render.rs b/src/librustdoc/html/render.rs index 396f71173f8..34f56c95ecf 100644 --- a/src/librustdoc/html/render.rs +++ b/src/librustdoc/html/render.rs @@ -1120,7 +1120,9 @@ impl DocFolder for Cache { clean::StructItem(..) | clean::EnumItem(..) | clean::TypedefItem(..) | clean::TraitItem(..) | clean::FunctionItem(..) | clean::ModuleItem(..) | - clean::ForeignFunctionItem(..) if !self.stripped_mod => { + clean::ForeignFunctionItem(..) | clean::ForeignStaticItem(..) | + clean::ConstantItem(..) | clean::StaticItem(..) + if !self.stripped_mod => { // Reexported items mean that the same id can show up twice // in the rustdoc ast that we're looking at. We know, // however, that a reexported item doesn't show up in the |
