Skip to content

Commit e764cea

Browse files
committed
---
yaml --- r: 24195 b: refs/heads/master c: 26a8fe3 h: refs/heads/master i: 24193: 4b2c8e7 24191: 6a67df1 v: v3
1 parent 4c5018b commit e764cea

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
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: c6605168a15d17cce57d1e23f6a3a290a8ab441d
2+
refs/heads/master: 26a8fe35537ec9dbd7bbd34479673b2f6d935140
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: cd6f24f9d14ac90d167386a56e7a6ac1f0318195
55
refs/heads/try: ffbe0e0e00374358b789b0037bcb3a577cd218be

trunk/src/test/run-pass/issue-2904.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
/// Map representation
22
3+
use io::ReaderUtil;
4+
35
extern mod std;
46

57
enum square {
@@ -50,7 +52,7 @@ fn read_board_grid<rdr: Owned io::Reader>(+in: rdr) -> ~[~[square]] {
5052
let mut grid = ~[];
5153
for in.each_line |line| {
5254
let mut row = ~[];
53-
for line.each_char |c| {
55+
for str::each_char(line) |c| {
5456
vec::push(row, square_from_char(c))
5557
}
5658
vec::push(grid, row)

0 commit comments

Comments
 (0)