Skip to content

Commit 62b298e

Browse files
committed
missed merges
1 parent cbcdeb8 commit 62b298e

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/lib/io.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -390,14 +390,9 @@ fn buffered_file_buf_writer(path: str) -> result::t<buf_writer, str> {
390390

391391

392392
// FIXME it would be great if this could be a const
393-
<<<<<<< HEAD
394393
// Problem seems to be that new_writer is not pure
395-
fn stdout() -> writer { ret new_writer(fd_buf_writer(1, option::none)); }
396-
fn stderr() -> writer { ret new_writer(fd_buf_writer(2, option::none)); }
397-
=======
398394
fn stdout() -> writer { ret new_writer(fd_buf_writer(1i32, option::none)); }
399395
fn stderr() -> writer { ret new_writer(fd_buf_writer(2i32, option::none)); }
400-
>>>>>>> refactor all unix types
401396

402397
fn print(s: str) { stdout().write_str(s); }
403398
fn println(s: str) { stdout().write_str(s + "\n"); }

0 commit comments

Comments
 (0)