Unbreak run-pass/issue-2904 more
This commit is contained in:
parent
3232e75995
commit
87a72567f0
1 changed files with 0 additions and 5 deletions
|
|
@ -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)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue