remove unecessary memset

This commit is contained in:
Irlan 2018-07-12 11:05:19 -03:00
parent e53d1f69a3
commit 386078e890

View File

@ -92,7 +92,6 @@ inline b3SparseSymMat33::b3SparseSymMat33(const b3SparseSymMat33& m)
{
M = m.M;
row_ptrs = (u32*)b3Alloc((M + 1) * sizeof(u32));
memset(row_ptrs, 0, (M + 1) * sizeof(u32));
value_count = m.value_count;
value_capacity = m.value_capacity;
values = (b3Mat33*)b3Alloc(value_capacity * sizeof(b3Mat33));