From d738bedc5b159fb4ebb304a6632867ddddc67626 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Sun, 11 Dec 2011 11:45:03 +0100 Subject: [PATCH] remove redundant declaration (fix compilation with clang 3.0) --- Eigen/src/Cholesky/LLT.h | 2 -- 1 file changed, 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 struct llt_inplace 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 struct llt_inplace typedef typename MatrixType::ColXpr ColXpr; typedef typename internal::remove_all::type ColXprCleaned; typedef typename ColXprCleaned::SegmentReturnType ColXprSegment; - typedef typename MatrixType::Scalar Scalar; typedef Matrix TempVectorType; typedef typename TempVectorType::SegmentReturnType TempVecSegment;