1
Fork 0

Test fixes and rebase conflicts

Also some tidying up of a bunch of crate attributes
This commit is contained in:
Alex Crichton 2015-01-30 12:26:44 -08:00
parent 188d7c0bc3
commit 3a2530d611
56 changed files with 227 additions and 246 deletions

View file

@ -1942,7 +1942,7 @@ fn item_enum(w: &mut fmt::Formatter, it: &clean::Item,
clean::VariantItem(ref var) => {
match var.kind {
clean::StructVariant(ref s) => {
let mut fields = s.fields.iter().filter(|f| {
let fields = s.fields.iter().filter(|f| {
match f.inner {
clean::StructFieldItem(ref t) => match *t {
clean::HiddenStructField => false,