auto merge of #9114 : sfackler/rust/flush-fix, r=brson

This commit is contained in:
bors 2013-09-11 23:11:04 -07:00
commit 03ca1befb3

View File

@ -93,7 +93,7 @@ impl Writer for TcpStream {
}
}
fn flush(&mut self) { fail!() }
fn flush(&mut self) { /* no-op */ }
}
pub struct TcpListener(~RtioTcpListenerObject);