diff options
| -rw-r--r-- | src/librustc_typeck/collect.rs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/librustc_typeck/collect.rs b/src/librustc_typeck/collect.rs index 6f5eccfa198..bbafcdae1bb 100644 --- a/src/librustc_typeck/collect.rs +++ b/src/librustc_typeck/collect.rs @@ -160,7 +160,9 @@ impl<'a, 'tcx> AstConv<'tcx> for CollectCtxt<'a, 'tcx> { } match self.tcx.map.find(id.node) { - Some(ast_map::NodeItem(item)) => ty_of_item(self, &*item), + Some(ast_map::NodeItem(item)) => { + ty_of_item(self, &*item) + } Some(ast_map::NodeForeignItem(foreign_item)) => { let abi = self.tcx.map.get_foreign_abi(id.node); ty_of_foreign_item(self, &*foreign_item, abi) @@ -819,8 +821,8 @@ fn get_trait_def<'a, 'tcx>(ccx: &CollectCtxt<'a, 'tcx>, } fn trait_def_of_item<'a, 'tcx>(ccx: &CollectCtxt<'a, 'tcx>, - it: &ast::Item) - -> Rc<ty::TraitDef<'tcx>> + it: &ast::Item) + -> Rc<ty::TraitDef<'tcx>> { let def_id = local_def(it.id); let tcx = ccx.tcx; |
