aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Cholesky/LLT.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2011-12-11 11:45:03 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2011-12-11 11:45:03 +0100
commitd738bedc5b159fb4ebb304a6632867ddddc67626 (patch)
treee8f9607ab67127ff9e8f324e06a5b255e1c933d8 /Eigen/src/Cholesky/LLT.h
parentf60e6f5ee8314b563c2c3053255011b64f8d6635 (diff)
remove redundant declaration (fix compilation with clang 3.0)
Diffstat (limited to 'Eigen/src/Cholesky/LLT.h')
-rw-r--r--Eigen/src/Cholesky/LLT.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/Eigen/src/Cholesky/LLT.h b/Eigen/src/Cholesky/LLT.h
index aef7ae263..0c7093375 100644
--- a/Eigen/src/Cholesky/LLT.h
+++ b/Eigen/src/Cholesky/LLT.h
@@ -204,7 +204,6 @@ template<typename Scalar> struct llt_inplace<Scalar, Lower>
static typename MatrixType::Index unblocked(MatrixType& mat)
{
typedef typename MatrixType::Index Index;
-// typedef typename MatrixType::Scalar Scalar;
typedef typename MatrixType::RealScalar RealScalar;
eigen_assert(mat.rows()==mat.cols());
@@ -267,7 +266,6 @@ template<typename Scalar> struct llt_inplace<Scalar, Lower>
typedef typename MatrixType::ColXpr ColXpr;
typedef typename internal::remove_all<ColXpr>::type ColXprCleaned;
typedef typename ColXprCleaned::SegmentReturnType ColXprSegment;
- typedef typename MatrixType::Scalar Scalar;
typedef Matrix<Scalar,Dynamic,1> TempVectorType;
typedef typename TempVectorType::SegmentReturnType TempVecSegment;