]> git.lizzy.rs Git - rust.git/commitdiff
std: add tracking issue for `RawOsError`
authorjoboet <jonasboettiger@icloud.com>
Wed, 8 Feb 2023 11:35:27 +0000 (12:35 +0100)
committerjoboet <jonasboettiger@icloud.com>
Wed, 8 Feb 2023 11:35:27 +0000 (12:35 +0100)
library/std/src/io/error.rs
library/std/src/io/mod.rs

index 324d698eaeb1d129a772f7bb31db616aee342b62..7f07e4fddef77ca7f0c0e51f5352a922b5d5b776 100644 (file)
@@ -102,7 +102,7 @@ enum ErrorData<C> {
 /// portability.
 ///
 /// [`into`]: Into::into
-#[unstable(feature = "raw_os_error_ty", issue = "none")]
+#[unstable(feature = "raw_os_error_ty", issue = "107792")]
 pub type RawOsError = i32;
 
 // `#[repr(align(4))]` is probably redundant, it should have that value or
index 5907ba5d5fbf3ab8dd8495cd2619aa25f5b7de09..b2b6d86134b6292bff70b20964bd26584b1bcac8 100644 (file)
 
 #[stable(feature = "bufwriter_into_parts", since = "1.56.0")]
 pub use self::buffered::WriterPanicked;
-#[unstable(feature = "raw_os_error_ty", issue = "none")]
+#[unstable(feature = "raw_os_error_ty", issue = "107792")]
 pub use self::error::RawOsError;
 pub(crate) use self::stdio::attempt_print_to_stderr;
 #[unstable(feature = "internal_output_capture", issue = "none")]