Clearing up some memory to prevent stupid issues

Preparing for some optimisations. (absolutely need to reduce the ammount of allocations done.)
This commit is contained in:
Godzil
2020-03-02 08:24:09 +00:00
parent 0ac44c3539
commit ace7d53571
5 changed files with 24 additions and 4 deletions

View File

@@ -125,7 +125,6 @@ Matrix Matrix::transpose()
int x, y;
Matrix ret = Matrix(this->size);
#pragma omp parallel for simd private(y, x)
for (y = 0 ; y < this->size ; y++)
{
for (x = 0 ; x < this->size ; x++)