Improvements

This commit is contained in:
xavo95 2025-01-12 19:31:45 +01:00
parent b9893813f2
commit ac26bc2839
Signed by: xavo95
GPG key ID: CBF8ADED6DEBB783

View file

@ -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)