0
0
mirror of https://gitlab.com/libeigen/eigen.git synced 2026-01-18 17:31:19 +01:00

Add missing semicolon

libeigen/eigen!2097
This commit is contained in:
Cédric Hubert
2025-12-18 13:49:11 +00:00
committed by Chip Kerchner
parent fe973ab0c5
commit 748e0a6517

View File

@@ -455,7 +455,8 @@ ArpackGeneralizedSelfAdjointEigenSolver<MatrixType, MatrixSolver, BisSPD>::compu
}
if (!(mode == 1 && isBempty) && !(mode == 2 && isBempty) && OP.info() != Success) {
m_info = OP.info() delete[] v;
m_info = OP.info();
delete[] v;
delete[] iparam;
delete[] ipntr;
delete[] workd;