Fix warning: `Vec<T>` is already on the heap, the boxing is unnecessary
This commit is contained in:
Chun-Min Chang 2021-07-22 16:05:42 -07:00 коммит произвёл Matthew Gregan
Родитель 5d0daaaa5e
Коммит f95436b134
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -8,7 +8,7 @@ use std::os::raw::c_char;
#[derive(Debug)]
pub struct Intern {
vec: Vec<Box<CString>>,
vec: Vec<CString>,
}
impl Intern {
@ -26,7 +26,7 @@ impl Intern {
}
}
self.vec.push(Box::new(string.to_owned()));
self.vec.push(string.to_owned());
self.vec.last().unwrap().as_ptr()
}
}