MeshPart: modernize C++: replace 'typedef' with 'using'

This commit is contained in:
wmayer
2022-08-29 18:36:52 +02:00
parent fd4e2c967b
commit 7eb30ca5c7
6 changed files with 22 additions and 22 deletions

View File

@@ -47,8 +47,8 @@
namespace lscmrelax
{
typedef Eigen::Triplet<double> trip;
typedef Eigen::SparseMatrix<double> spMat;
using trip = Eigen::Triplet<double>;
using spMat = Eigen::SparseMatrix<double>;