From bea7f7c582ab3c11a1e2773d6636aa87390a67a7 Mon Sep 17 00:00:00 2001 From: Charles Schlosser Date: Fri, 26 Sep 2025 09:32:28 +0000 Subject: [PATCH] SparseMatrixBase: delete redundant/shadowed typedef --- Eigen/src/SparseCore/SparseMatrixBase.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/Eigen/src/SparseCore/SparseMatrixBase.h b/Eigen/src/SparseCore/SparseMatrixBase.h index fbf1313d5..ccbbe98da 100644 --- a/Eigen/src/SparseCore/SparseMatrixBase.h +++ b/Eigen/src/SparseCore/SparseMatrixBase.h @@ -227,9 +227,6 @@ class SparseMatrixBase : public EigenBase { using Nested = typename Derived::Nested; using NestedCleaned = typename internal::remove_all::type; - /// For converting `0's` to the matrices numerical type - using Scalar = typename Derived::Scalar; - if (Flags & RowMajorBit) { Nested nm(m.derived()); internal::evaluator thisEval(nm);