fixed: mismatched delete / new[]

git-svn-id: http://svn.sintef.no/trondheim/IFEM/trunk@800 e10b68d5-8a6e-419e-a041-bce267b0401d
This commit is contained in:
akva 2011-02-16 12:51:53 +00:00 committed by Knut Morten Okstad
parent da2d5ad2ac
commit c2a225f2d1

View File

@ -130,7 +130,7 @@ void DenseMatrix::init ()
myMat.fill(real(0));
// Delete pivotation vector of old factorization, if any
if (ipiv) delete ipiv;
delete[] ipiv;
ipiv = 0;
}