Skip to content

Commit

Permalink
rustc_metadata: fix for the new ? ambiguity around collect.
Browse files Browse the repository at this point in the history
  • Loading branch information
eddyb committed Sep 20, 2016
1 parent dadbaa4 commit f2283a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/librustc_metadata/decoder.rs
Expand Up @@ -366,7 +366,7 @@ impl<'a, 'tcx> SpecializedDecoder<ty::GenericPredicates<'tcx>> for DecodeContext
} else {
ty::Predicate::decode(self)
}
}).collect()?
}).collect::<Result<Vec<_>, _>>()?
})
}
}
Expand Down

0 comments on commit f2283a7

Please sign in to comment.