Skip to content

Commit b59fa0d

Browse files
committed
Remove #[inline(always)] on Vec::into_boxed_slice
1 parent d4dff03 commit b59fa0d

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/liballoc/vec.rs

-1
Original file line numberDiff line numberDiff line change
@@ -638,7 +638,6 @@ impl<T> Vec<T> {
638638
/// assert_eq!(slice.into_vec().capacity(), 3);
639639
/// ```
640640
#[stable(feature = "rust1", since = "1.0.0")]
641-
#[inline(always)]
642641
pub fn into_boxed_slice(mut self) -> Box<[T]> {
643642
unsafe {
644643
self.shrink_to_fit();

0 commit comments

Comments
 (0)