mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-04 11:04:03 +00:00
Rollup merge of #84858 - LingMan:patch-1, r=JohnTitor
Fix stability attributes of byte-to-string specialization
This commit is contained in:
commit
55e21e8cca
@ -2288,7 +2288,7 @@ impl ToString for char {
|
||||
}
|
||||
}
|
||||
|
||||
#[stable(feature = "u8_to_string_specialization", since = "1.999.0")]
|
||||
#[stable(feature = "u8_to_string_specialization", since = "1.54.0")]
|
||||
impl ToString for u8 {
|
||||
#[inline]
|
||||
fn to_string(&self) -> String {
|
||||
@ -2307,7 +2307,7 @@ impl ToString for u8 {
|
||||
}
|
||||
}
|
||||
|
||||
#[stable(feature = "i8_to_string_specialization", since = "1.999.0")]
|
||||
#[stable(feature = "i8_to_string_specialization", since = "1.54.0")]
|
||||
impl ToString for i8 {
|
||||
#[inline]
|
||||
fn to_string(&self) -> String {
|
||||
|
Loading…
Reference in New Issue
Block a user