diff options
| author | Dror Levin <spatz@psybear.com> | 2018-07-02 17:38:15 +0300 |
|---|---|---|
| committer | Dror Levin <spatz@psybear.com> | 2018-07-02 17:38:15 +0300 |
| commit | 73166f751b7509dd95ce903ecdeab2dd5d89aa90 (patch) | |
| tree | 4d061f15e69dd456d65f3fb2b2a6a01671268686 /src/libstd/sys | |
| parent | 7015dfd1b9cfc02cd1f6dc30cd88b106211a3921 (diff) | |
| download | rust-73166f751b7509dd95ce903ecdeab2dd5d89aa90.tar.gz rust-73166f751b7509dd95ce903ecdeab2dd5d89aa90.zip | |
Fill in tracking issue number for read_exact_at/write_all_at
Diffstat (limited to 'src/libstd/sys')
| -rw-r--r-- | src/libstd/sys/unix/ext/fs.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/sys/unix/ext/fs.rs b/src/libstd/sys/unix/ext/fs.rs index 4c2cea0d32c..507e9d88171 100644 --- a/src/libstd/sys/unix/ext/fs.rs +++ b/src/libstd/sys/unix/ext/fs.rs @@ -109,7 +109,7 @@ pub trait FileExt { /// Ok(()) /// } /// ``` - #[unstable(feature = "rw_exact_all_at", issue = "0")] + #[unstable(feature = "rw_exact_all_at", issue = "51984")] fn read_exact_at(&self, mut buf: &mut [u8], mut offset: u64) -> io::Result<()> { while !buf.is_empty() { match self.read_at(buf, offset) { @@ -204,7 +204,7 @@ pub trait FileExt { /// Ok(()) /// } /// ``` - #[unstable(feature = "rw_exact_all_at", issue = "0")] + #[unstable(feature = "rw_exact_all_at", issue = "51984")] fn write_all_at(&self, mut buf: &[u8], mut offset: u64) -> io::Result<()> { while !buf.is_empty() { match self.write_at(buf, offset) { |
