fix readability-isolate-declarations

This commit is contained in:
wmayer
2023-11-15 11:55:10 +01:00
parent 276bbcad6e
commit a602003747
16 changed files with 226 additions and 91 deletions

View File

@@ -540,6 +540,7 @@ void Matrix4D::inverse()
using Matrix = double*;
// NOLINTBEGIN
void Matrix_gauss(Matrix a, Matrix b)
{
int ipiv[4], indxr[4], indxc[4];
@@ -617,6 +618,7 @@ void Matrix_gauss(Matrix a, Matrix b)
}
}
}
// NOLINTEND
void Matrix4D::inverseOrthogonal()
{