Base: modernize C++: replace 'typedef' with 'using'
This commit is contained in:
@@ -487,7 +487,7 @@ void Matrix4D::inverse ()
|
||||
(*this) = clInvRotMat * clInvTrlMat;
|
||||
}
|
||||
|
||||
typedef double * Matrix;
|
||||
using Matrix = double *;
|
||||
|
||||
void Matrix_gauss(Matrix a, Matrix b)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user