Skip to content

Commit cf4e53e

Browse files
committedNov 7, 2014
Fix tidy error
1 parent 091dc6e commit cf4e53e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

Diff for: ‎src/librustc/middle/typeck/collect.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1155,7 +1155,8 @@ pub fn convert(ccx: &CrateCtxt, it: &ast::Item) {
11551155
parent_visibility);
11561156

11571157
for trait_ref in opt_trait_ref.iter() {
1158-
astconv::instantiate_trait_ref(&icx, &ExplicitRscope, trait_ref, Some(selfty), None);
1158+
astconv::instantiate_trait_ref(&icx, &ExplicitRscope, trait_ref,
1159+
Some(selfty), None);
11591160
}
11601161
},
11611162
ast::ItemTrait(_, _, _, ref trait_methods) => {

5 commit comments

Comments
 (5)

bors commented on Nov 9, 2014

@bors
Collaborator

saw approval from pcwalton
at nikomatsakis@cf4e53e

bors commented on Nov 9, 2014

@bors
Collaborator

merging nikomatsakis/rust/hrtb-refactor-2 = cf4e53e into auto

bors commented on Nov 9, 2014

@bors
Collaborator

nikomatsakis/rust/hrtb-refactor-2 = cf4e53e merged ok, testing candidate = a2f303a

bors commented on Nov 9, 2014

@bors
Collaborator

fast-forwarding master to auto = a2f303a

Please sign in to comment.