Skip to content

Commit c7c66e1

Browse files
authored
Rollup merge of #107793 - joboet:raw_os_error_ty_tracking, r=Dylan-DPC
Add missing tracking issue for `RawOsError` I forgot to add it in the original PR… See #107792. ```@rustbot``` label +T-libs-api -T-libs
2 parents ec65285 + 6a53311 commit c7c66e1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

library/std/src/io/error.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ enum ErrorData<C> {
102102
/// portability.
103103
///
104104
/// [`into`]: Into::into
105-
#[unstable(feature = "raw_os_error_ty", issue = "none")]
105+
#[unstable(feature = "raw_os_error_ty", issue = "107792")]
106106
pub type RawOsError = i32;
107107

108108
// `#[repr(align(4))]` is probably redundant, it should have that value or

library/std/src/io/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ use crate::sys_common::memchr;
262262

263263
#[stable(feature = "bufwriter_into_parts", since = "1.56.0")]
264264
pub use self::buffered::WriterPanicked;
265-
#[unstable(feature = "raw_os_error_ty", issue = "none")]
265+
#[unstable(feature = "raw_os_error_ty", issue = "107792")]
266266
pub use self::error::RawOsError;
267267
pub(crate) use self::stdio::attempt_print_to_stderr;
268268
#[unstable(feature = "internal_output_capture", issue = "none")]

0 commit comments

Comments
 (0)