Updates stability attributes to the current nightly version

This commit is contained in:
Federico Ponzi 2020-09-21 08:52:59 +02:00
parent ec7f9b927f
commit 88a29e630c
No known key found for this signature in database
GPG Key ID: CFA9CCFE5363D0C6
2 changed files with 3 additions and 3 deletions

View File

@ -607,7 +607,7 @@ impl Write for Stdout {
}
}
#[stable(feature = "write_mt", since = "1.47.0")]
#[stable(feature = "write_mt", since = "1.48.0")]
impl Write for &Stdout {
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
self.lock().write(buf)
@ -810,7 +810,7 @@ impl Write for Stderr {
}
}
#[stable(feature = "write_mt", since = "1.47.0")]
#[stable(feature = "write_mt", since = "1.48.0")]
impl Write for &Stderr {
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
self.lock().write(buf)

View File

@ -248,7 +248,7 @@ impl Write for Sink {
}
}
#[stable(feature = "write_mt", since = "1.47.0")]
#[stable(feature = "write_mt", since = "1.48.0")]
impl Write for &Sink {
#[inline]
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {