Skip to content

Commit 1efea31

Browse files
committed
add str_from_utf16_endian tracking issue
1 parent 3d448bd commit 1efea31

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

library/alloc/src/string.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@ impl String {
735735
/// assert!(String::from_utf16le(v).is_err());
736736
/// ```
737737
#[cfg(not(no_global_oom_handling))]
738-
#[unstable(feature = "str_from_utf16_endian", issue = "none", reason = "recently added")]
738+
#[unstable(feature = "str_from_utf16_endian", issue = "116258")]
739739
pub fn from_utf16le(v: &[u8]) -> Result<String, FromUtf16Error> {
740740
if v.len() % 2 != 0 {
741741
return Err(FromUtf16Error(()));
@@ -774,7 +774,7 @@ impl String {
774774
/// String::from_utf16le_lossy(v));
775775
/// ```
776776
#[cfg(not(no_global_oom_handling))]
777-
#[unstable(feature = "str_from_utf16_endian", issue = "none", reason = "recently added")]
777+
#[unstable(feature = "str_from_utf16_endian", issue = "116258")]
778778
pub fn from_utf16le_lossy(v: &[u8]) -> String {
779779
match (cfg!(target_endian = "little"), unsafe { v.align_to::<u16>() }) {
780780
(true, ([], v, [])) => Self::from_utf16_lossy(v),
@@ -810,7 +810,7 @@ impl String {
810810
/// assert!(String::from_utf16be(v).is_err());
811811
/// ```
812812
#[cfg(not(no_global_oom_handling))]
813-
#[unstable(feature = "str_from_utf16_endian", issue = "none", reason = "recently added")]
813+
#[unstable(feature = "str_from_utf16_endian", issue = "116258")]
814814
pub fn from_utf16be(v: &[u8]) -> Result<String, FromUtf16Error> {
815815
if v.len() % 2 != 0 {
816816
return Err(FromUtf16Error(()));
@@ -849,7 +849,7 @@ impl String {
849849
/// String::from_utf16be_lossy(v));
850850
/// ```
851851
#[cfg(not(no_global_oom_handling))]
852-
#[unstable(feature = "str_from_utf16_endian", issue = "none", reason = "recently added")]
852+
#[unstable(feature = "str_from_utf16_endian", issue = "116258")]
853853
pub fn from_utf16be_lossy(v: &[u8]) -> String {
854854
match (cfg!(target_endian = "big"), unsafe { v.align_to::<u16>() }) {
855855
(true, ([], v, [])) => Self::from_utf16_lossy(v),

0 commit comments

Comments
 (0)