File tree 3 files changed +2
-3
lines changed 3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -544,7 +544,7 @@ impl OsString {
544
544
/// However, keep in mind that trimming the capacity may result in a reallocation and copy.
545
545
///
546
546
/// [`into_boxed_os_str`]: Self::into_boxed_os_str
547
- #[ unstable ( feature = "os_string_pathbuf_leak" , issue = "125965 " ) ]
547
+ #[ stable ( feature = "os_string_pathbuf_leak" , since = "CURRENT_RUSTC_VERSION " ) ]
548
548
#[ inline]
549
549
pub fn leak < ' a > ( self ) -> & ' a mut OsStr {
550
550
OsStr :: from_inner_mut ( self . inner . leak ( ) )
Original file line number Diff line number Diff line change @@ -1247,7 +1247,7 @@ impl PathBuf {
1247
1247
/// However, keep in mind that trimming the capacity may result in a reallocation and copy.
1248
1248
///
1249
1249
/// [`into_boxed_path`]: Self::into_boxed_path
1250
- #[ unstable ( feature = "os_string_pathbuf_leak" , issue = "125965 " ) ]
1250
+ #[ stable ( feature = "os_string_pathbuf_leak" , since = "CURRENT_RUSTC_VERSION " ) ]
1251
1251
#[ inline]
1252
1252
pub fn leak < ' a > ( self ) -> & ' a mut Path {
1253
1253
Path :: from_inner_mut ( self . inner . leak ( ) )
Original file line number Diff line number Diff line change 3
3
path_add_extension,
4
4
path_file_prefix,
5
5
maybe_uninit_slice,
6
- os_string_pathbuf_leak
7
6
) ]
8
7
9
8
use std:: clone:: CloneToUninit ;
You can’t perform that action at this time.
0 commit comments