1
Fork 0

library: Use type aliases to make CStr(ing) in libcore/liballoc unstable

This commit is contained in:
Vadim Petrochenkov 2022-04-06 17:04:18 +03:00
parent 5bee741a08
commit 7f3cc2fbbf
8 changed files with 28 additions and 13 deletions

View file

@ -260,6 +260,7 @@
#![feature(atomic_mut_ptr)]
#![feature(char_error_internals)]
#![feature(char_internals)]
#![feature(core_c_str)]
#![feature(core_intrinsics)]
#![feature(cstr_from_bytes_until_nul)]
#![feature(cstr_internals)]
@ -288,6 +289,7 @@
//
// Library features (alloc):
#![feature(alloc_layout_extra)]
#![feature(alloc_c_string)]
#![feature(allocator_api)]
#![feature(get_mut_unchecked)]
#![feature(map_try_insert)]