From 5e8384df2edaf30d106503d4889bc70b62c20fd1 Mon Sep 17 00:00:00 2001 From: Hauke Heibel Date: Thu, 28 Feb 2013 08:47:38 +0100 Subject: [PATCH] MSVC fix; the base class typedef shadowed the local template parameter. --- Eigen/src/Core/Ref.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Eigen/src/Core/Ref.h b/Eigen/src/Core/Ref.h index 09b7e2b70..aba795bdb 100644 --- a/Eigen/src/Core/Ref.h +++ b/Eigen/src/Core/Ref.h @@ -213,8 +213,8 @@ template class Ref }; // this is the const ref version -template class Ref - : public RefBase > +template class Ref + : public RefBase > { typedef internal::traits Traits; public: @@ -247,7 +247,7 @@ template class Ref