From 42d512d33c21130094d080f663712dd0d0683fca Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Fri, 28 Jan 2011 10:26:05 +0100 Subject: fix compilation with gcc 4.2 and older --- Eigen/src/Core/MatrixBase.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Eigen/src/Core/MatrixBase.h b/Eigen/src/Core/MatrixBase.h index 398bfaab0..99ddf1077 100644 --- a/Eigen/src/Core/MatrixBase.h +++ b/Eigen/src/Core/MatrixBase.h @@ -395,7 +395,7 @@ template class MatrixBase /// \internal helper struct to form the return type of the cross product template struct cross_product_return_type { typedef typename internal::scalar_product_traits::Scalar,typename internal::traits::Scalar>::ReturnType Scalar; - typedef Matrix type; + typedef Matrix type; }; #endif // EIGEN_PARSED_BY_DOXYGEN template -- cgit v1.2.3