Skip to content

Commit 6c4d582

Browse files
author
Jorge Aparicio
committed
---
yaml --- r: 171706 b: refs/heads/beta c: 274146d h: refs/heads/master v: v3
1 parent 2a4fb38 commit 6c4d582

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ refs/heads/automation-fail: 1bf06495443584539b958873e04cc2f864ab10e4
3131
refs/heads/issue-18208-method-dispatch-3-quick-reject: 2009f85b9f99dedcec4404418eda9ddba90258a2
3232
refs/heads/batch: b5571ed71a5879c0495a982506258d5d267744ed
3333
refs/heads/building: 126db549b038c84269a1e4fe46f051b2c15d6970
34-
refs/heads/beta: 62ee3f1622183dfab2ed5894e9ab61deda416e9a
34+
refs/heads/beta: 274146d650e9c5ef476cb31bbc47e555ed4d359b
3535
refs/heads/windistfix: 7608dbad651f02e837ed05eef3d74a6662a6e928

branches/beta/src/librustc_typeck/check/regionck.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1052,11 +1052,11 @@ fn constrain_callee(rcx: &mut Rcx,
10521052
}
10531053
}
10541054

1055-
fn constrain_call<'a, I: Iterator<&'a ast::Expr>>(rcx: &mut Rcx,
1056-
call_expr: &ast::Expr,
1057-
receiver: Option<&ast::Expr>,
1058-
mut arg_exprs: I,
1059-
implicitly_ref_args: bool) {
1055+
fn constrain_call<'a, I: Iterator<Item=&'a ast::Expr>>(rcx: &mut Rcx,
1056+
call_expr: &ast::Expr,
1057+
receiver: Option<&ast::Expr>,
1058+
mut arg_exprs: I,
1059+
implicitly_ref_args: bool) {
10601060
//! Invoked on every call site (i.e., normal calls, method calls,
10611061
//! and overloaded operators). Constrains the regions which appear
10621062
//! in the type of the function. Also constrains the regions that

branches/beta/src/librustc_typeck/collect.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ fn convert_methods<'a,'tcx,'i,I>(ccx: &CrateCtxt<'a, 'tcx>,
428428
untransformed_rcvr_ty: Ty<'tcx>,
429429
rcvr_ty_generics: &ty::Generics<'tcx>,
430430
rcvr_visibility: ast::Visibility)
431-
where I: Iterator<&'i ast::Method> {
431+
where I: Iterator<Item=&'i ast::Method> {
432432
debug!("convert_methods(untransformed_rcvr_ty={}, rcvr_ty_generics={})",
433433
untransformed_rcvr_ty.repr(ccx.tcx),
434434
rcvr_ty_generics.repr(ccx.tcx));

0 commit comments

Comments
 (0)