From c2f66c65aaef44c698ba141a08b5940baf4c56c8 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Tue, 16 Sep 2014 16:23:45 -0700 Subject: [PATCH] workaround MSVC compilation issue (shadow issue) --- Eigen/src/Core/Inverse.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Eigen/src/Core/Inverse.h b/Eigen/src/Core/Inverse.h index 1d167867f..84abd258e 100644 --- a/Eigen/src/Core/Inverse.h +++ b/Eigen/src/Core/Inverse.h @@ -101,11 +101,11 @@ namespace internal { * * \sa class Inverse */ -template -struct unary_evaluator > - : public evaluator::PlainObject>::type +template +struct unary_evaluator > + : public evaluator::PlainObject>::type { - typedef Inverse InverseType; + typedef Inverse InverseType; typedef typename InverseType::PlainObject PlainObject; typedef typename evaluator::type Base;