From 7ee58632023c4941408264eeef34a68277773408 Mon Sep 17 00:00:00 2001 From: Niko Matsakis Date: Mon, 5 Jan 2015 05:37:11 -0500 Subject: [PATCH] Minor code formatting cleanups. --- src/librustc_typeck/collect.rs | 8 +++++--- 1 file 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> + it: &ast::Item) + -> Rc> { let def_id = local_def(it.id); let tcx = ccx.tcx;