From 39c568445c7c6fa53069eadf79ca01e0b420fbc2 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Tue, 1 Jun 2010 13:59:21 +0200 Subject: [PATCH] simplify a using statement --- Eigen/src/Core/TriangularMatrix.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Eigen/src/Core/TriangularMatrix.h b/Eigen/src/Core/TriangularMatrix.h index 47c11ceb6..d4799fbc1 100644 --- a/Eigen/src/Core/TriangularMatrix.h +++ b/Eigen/src/Core/TriangularMatrix.h @@ -156,7 +156,7 @@ template class TriangularView typedef typename MatrixType::PlainObject DenseMatrixType; typedef typename MatrixType::Nested MatrixTypeNested; typedef typename ei_cleantype::type _MatrixTypeNested; - using TriangularBase >::evalToLazy; + using Base::evalToLazy; typedef typename ei_traits::StorageKind StorageKind; typedef typename ei_index::type Index;