Skip to content

Commit

Permalink
Rollup merge of #107793 - joboet:raw_os_error_ty_tracking, r=Dylan-DPC
Browse files Browse the repository at this point in the history
Add missing tracking issue for `RawOsError`

I forgot to add it in the original PR…

See #107792.

`@rustbot` label +T-libs-api -T-libs
  • Loading branch information
Dylan-DPC committed Feb 8, 2023
2 parents 4f7daf0 + 6a53311 commit 1d255d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion library/std/src/io/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion library/std/src/io/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ use crate::sys_common::memchr;

#[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")]
Expand Down

0 comments on commit 1d255d1

Please sign in to comment.