diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2015-03-17 15:20:03 +0530 |
|---|---|---|
| committer | Manish Goregaokar <manishsmail@gmail.com> | 2015-03-17 15:20:03 +0530 |
| commit | 925d5ad715a23d02c4d89dd55aa99e387c1e28ab (patch) | |
| tree | 20ebd6f55eb8d73b7331da5eaf8766ab882ae2d2 /src/libstd/io | |
| parent | c2671b59ccbc899b8defbabf453e88f89900c3a0 (diff) | |
| parent | b3a44859ec1a089859931784f0271c2fd7a0eb1d (diff) | |
| download | rust-925d5ad715a23d02c4d89dd55aa99e387c1e28ab.tar.gz rust-925d5ad715a23d02c4d89dd55aa99e387c1e28ab.zip | |
Rollup merge of #23415 - alexcrichton:stabilize-flush, r=aturon
The [associated RFC][rfc] for possibly splitting out `flush` has been closed and as a result there are no more blockers for stabilizing this method, so this commit marks the method as such. [rfc]: https://github.com/rust-lang/rfcs/pull/950
Diffstat (limited to 'src/libstd/io')
| -rw-r--r-- | src/libstd/io/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/io/mod.rs b/src/libstd/io/mod.rs index 72d014e77a7..d1231f549bb 100644 --- a/src/libstd/io/mod.rs +++ b/src/libstd/io/mod.rs @@ -363,7 +363,7 @@ pub trait Write { /// /// It is considered an error if not all bytes could be written due to /// I/O errors or EOF being reached. - #[unstable(feature = "io", reason = "waiting for RFC 950")] + #[stable(feature = "rust1", since = "1.0.0")] fn flush(&mut self) -> Result<()>; /// Attempts to write an entire buffer into this write. |
