Skip to content

Commit a31244c

Browse files
committed
---
yaml --- r: 22695 b: refs/heads/master c: 8868b22 h: refs/heads/master i: 22693: 7f77092 22691: ebf07f5 22687: 0e67732 v: v3
1 parent bd31049 commit a31244c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: a63e0e47f0d4fa6b79365c645d6c284de234e2d0
2+
refs/heads/master: 8868b222c32c5093c6066771ad2aaddc6a22da88
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: cd6f24f9d14ac90d167386a56e7a6ac1f0318195
55
refs/heads/try: ffbe0e0e00374358b789b0037bcb3a577cd218be

trunk/src/rustc/middle/typeck/check.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1699,7 +1699,7 @@ fn check_expr_with_unifier(fcx: @fn_ctxt,
16991699
};
17001700

17011701
let struct_type = ty::subst(tcx, substitutions, raw_type);
1702-
1702+
17031703
// Look up the class fields and build up a map.
17041704
let class_fields = ty::lookup_class_fields(tcx, class_id);
17051705
let class_field_map = str_hash();

trunk/src/test/run-pass/c-stack-returning-int64.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ extern mod libc {
99
}
1010

1111
fn atol(s: ~str) -> int {
12-
ret str::as_buf(s, { |x| libc::atol(x) });
12+
ret str::as_buf(s, { |x, _len| libc::atol(x) });
1313
}
1414

1515
fn atoll(s: ~str) -> i64 {
16-
ret str::as_buf(s, { |x| libc::atoll(x) });
16+
ret str::as_buf(s, { |x, _len| libc::atoll(x) });
1717
}
1818

1919
fn main() {

0 commit comments

Comments
 (0)