diff options
| author | Without Boats <woboats@gmail.com> | 2020-03-24 00:34:48 +0100 |
|---|---|---|
| committer | Without Boats <woboats@gmail.com> | 2020-03-24 00:34:48 +0100 |
| commit | 3cc4ef93260adc89eca3799d93757ff1a4c7b43f (patch) | |
| tree | 7aba0cc8f945e1738251976761ee4fdb03db6698 | |
| parent | 4dda632faf777e415977d28b9697df6cff09b01b (diff) | |
| download | rust-3cc4ef93260adc89eca3799d93757ff1a4c7b43f.tar.gz rust-3cc4ef93260adc89eca3799d93757ff1a4c7b43f.zip | |
correct rustc version
| -rw-r--r-- | src/libstd/io/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/io/mod.rs b/src/libstd/io/mod.rs index 4323dfff26f..1022123347e 100644 --- a/src/libstd/io/mod.rs +++ b/src/libstd/io/mod.rs @@ -1060,10 +1060,10 @@ impl<'a> DerefMut for IoSliceMut<'a> { #[repr(transparent)] pub struct IoSlice<'a>(sys::io::IoSlice<'a>); -#[stable(feature = "iovec-send-sync", since = "1.43.0")] +#[stable(feature = "iovec-send-sync", since = "1.44.0")] unsafe impl<'a> Send for IoSlice<'a> { } -#[stable(feature = "iovec-send-sync", since = "1.43.0")] +#[stable(feature = "iovec-send-sync", since = "1.44.0")] unsafe impl<'a> Sync for IoSlice<'a> { } #[stable(feature = "iovec", since = "1.36.0")] |
