Skip to content

Commit

Permalink
Rollup merge of rust-lang#84856 - kornelski:enomem, r=JohnTitor
Browse files Browse the repository at this point in the history
Correct stability of ErrorKind::OutOfMemory

rust-lang#84744
  • Loading branch information
GuillaumeGomez committed May 3, 2021
2 parents 5c91a4d + 2247d46 commit 3cb32ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/std/src/io/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ pub enum ErrorKind {

/// An operation could not be completed, because it failed
/// to allocate enough memory.
#[stable(feature = "out_of_memory_error", since = "1.53.0")]
#[stable(feature = "out_of_memory_error", since = "1.54.0")]
OutOfMemory,
}

Expand Down

0 comments on commit 3cb32ca

Please sign in to comment.