Skip to content

Commit ee1f17d

Browse files
committed
Stabilize const_cstr_unchecked
1 parent 552c271 commit ee1f17d

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

std/src/ffi/c_str.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1259,7 +1259,7 @@ impl CStr {
12591259
#[inline]
12601260
#[must_use]
12611261
#[stable(feature = "cstr_from_bytes", since = "1.10.0")]
1262-
#[rustc_const_unstable(feature = "const_cstr_unchecked", issue = "90343")]
1262+
#[rustc_const_stable(feature = "const_cstr_unchecked", since = "1.59.0")]
12631263
pub const unsafe fn from_bytes_with_nul_unchecked(bytes: &[u8]) -> &CStr {
12641264
// SAFETY: Casting to CStr is safe because its internal representation
12651265
// is a [u8] too (safe only inside std).

std/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,6 @@
252252
#![feature(char_internals)]
253253
#![cfg_attr(not(bootstrap), feature(concat_bytes))]
254254
#![feature(concat_idents)]
255-
#![feature(const_cstr_unchecked)]
256255
#![feature(const_fn_floating_point_arithmetic)]
257256
#![feature(const_fn_fn_ptr_basics)]
258257
#![feature(const_fn_trait_bound)]

0 commit comments

Comments
 (0)