File tree Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -568,7 +568,7 @@ impl OsString {
568
568
/// However, keep in mind that trimming the capacity may result in a reallocation and copy.
569
569
///
570
570
/// [`into_boxed_os_str`]: Self::into_boxed_os_str
571
- #[ unstable ( feature = "os_string_pathbuf_leak" , issue = "125965 " ) ]
571
+ #[ stable ( feature = "os_string_pathbuf_leak" , since = "CURRENT_RUSTC_VERSION " ) ]
572
572
#[ inline]
573
573
pub fn leak < ' a > ( self ) -> & ' a mut OsStr {
574
574
OsStr :: from_inner_mut ( self . inner . leak ( ) )
Original file line number Diff line number Diff line change @@ -1252,7 +1252,7 @@ impl PathBuf {
1252
1252
/// However, keep in mind that trimming the capacity may result in a reallocation and copy.
1253
1253
///
1254
1254
/// [`into_boxed_path`]: Self::into_boxed_path
1255
- #[ unstable ( feature = "os_string_pathbuf_leak" , issue = "125965 " ) ]
1255
+ #[ stable ( feature = "os_string_pathbuf_leak" , since = "CURRENT_RUSTC_VERSION " ) ]
1256
1256
#[ inline]
1257
1257
pub fn leak < ' a > ( self ) -> & ' a mut Path {
1258
1258
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
normalize_lexically
8
7
) ]
9
8
You can’t perform that action at this time.
0 commit comments