File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1360,7 +1360,7 @@ impl Literal {
1360
1360
}
1361
1361
1362
1362
/// Byte character literal.
1363
- #[ unstable ( feature = "proc_macro_byte_character" , issue = "115268 " ) ]
1363
+ #[ stable ( feature = "proc_macro_byte_character" , since = "CURRENT_RUSTC_VERSION " ) ]
1364
1364
pub fn byte_character ( byte : u8 ) -> Literal {
1365
1365
let string = [ byte] . escape_ascii ( ) . to_string ( ) ;
1366
1366
Literal :: new ( bridge:: LitKind :: Byte , & string, None )
@@ -1374,7 +1374,7 @@ impl Literal {
1374
1374
}
1375
1375
1376
1376
/// C string literal.
1377
- #[ unstable ( feature = "proc_macro_c_str_literals" , issue = "119750 " ) ]
1377
+ #[ stable ( feature = "proc_macro_c_str_literals" , since = "CURRENT_RUSTC_VERSION " ) ]
1378
1378
pub fn c_string ( string : & CStr ) -> Literal {
1379
1379
let string = string. to_bytes ( ) . escape_ascii ( ) . to_string ( ) ;
1380
1380
Literal :: new ( bridge:: LitKind :: CStr , & string, None )
You can’t perform that action at this time.
0 commit comments