Skip to content

Commit 599a0d7

Browse files
committed
---
yaml --- r: 20587 b: refs/heads/snap-stage3 c: 8868b22 h: refs/heads/master i: 20585: ad690b1 20583: 034bf37 v: v3
1 parent 6c59c0e commit 599a0d7

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,7 +1,7 @@
11
---
22
refs/heads/master: e430a699f2c60890d9b86069fd0c68a70ece7120
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: a63e0e47f0d4fa6b79365c645d6c284de234e2d0
4+
refs/heads/snap-stage3: 8868b222c32c5093c6066771ad2aaddc6a22da88
55
refs/heads/try: ffbe0e0e00374358b789b0037bcb3a577cd218be
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

branches/snap-stage3/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();

branches/snap-stage3/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)