Replace version placeholders with 1.73.0

This commit is contained in:
Mark Rousskov
2023-08-21 09:12:15 -04:00
parent 95305899b8
commit c8522adb97
12 changed files with 35 additions and 35 deletions

View File

@@ -849,7 +849,7 @@ impl Seek for File {
}
}
#[stable(feature = "io_traits_arc", since = "CURRENT_RUSTC_VERSION")]
#[stable(feature = "io_traits_arc", since = "1.73.0")]
impl Read for Arc<File> {
fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
(&**self).read(buf)
@@ -871,7 +871,7 @@ impl Read for Arc<File> {
(&**self).read_to_string(buf)
}
}
#[stable(feature = "io_traits_arc", since = "CURRENT_RUSTC_VERSION")]
#[stable(feature = "io_traits_arc", since = "1.73.0")]
impl Write for Arc<File> {
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
(&**self).write(buf)
@@ -888,7 +888,7 @@ impl Write for Arc<File> {
(&**self).flush()
}
}
#[stable(feature = "io_traits_arc", since = "CURRENT_RUSTC_VERSION")]
#[stable(feature = "io_traits_arc", since = "1.73.0")]
impl Seek for Arc<File> {
fn seek(&mut self, pos: SeekFrom) -> io::Result<u64> {
(&**self).seek(pos)