Improvements
This commit is contained in:
parent
b9893813f2
commit
ac26bc2839
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ impl TArray {
|
|||
self.cap
|
||||
}
|
||||
|
||||
pub fn clear(&mut self, len: u32) -> Self {
|
||||
pub fn clear(&mut self, len: u32) {
|
||||
if self.data_ptr != 0 && self.len > 0 {
|
||||
let data = unsafe {
|
||||
std::slice::from_raw_parts_mut(self.data_ptr as *mut u8, self.len as usize)
|
||||
|
|
Loading…
Reference in a new issue