Remove inline attribute from `into_vec()`

This commit is contained in:
Yuki Okushi 2020-04-17 00:23:44 +09:00
parent 4e4d49d60f
commit c2f24a1d94
No known key found for this signature in database
GPG Key ID: B0986C85C0E2DAA1
1 changed files with 0 additions and 1 deletions

View File

@ -140,7 +140,6 @@ mod hack {
use crate::string::ToString;
use crate::vec::Vec;
#[inline]
pub fn into_vec<T>(b: Box<[T]>) -> Vec<T> {
unsafe {
let len = b.len();