Unbreak run-pass/issue-2904 more

This commit is contained in:
Brian Anderson 2012-09-26 18:41:02 -07:00
parent 3232e75995
commit 87a72567f0

View file

@ -52,13 +52,8 @@ fn read_board_grid<rdr: Owned io::Reader>(+in: rdr) -> ~[~[square]] {
let mut grid = ~[];
for in.each_line |line| {
let mut row = ~[];
<<<<<<< HEAD
for str::each_char(line) |c| {
vec::push(row, square_from_char(c))
=======
for line.each_char |c| {
row.push(square_from_char(c))
>>>>>>> Demode vec::push (and convert to method)
}
grid.push(row)
}