aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/Product.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2014-03-11 11:44:11 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2014-03-11 11:44:11 +0100
commit5806e7380026ab4ebd8f1aa4792b83cfc60f58a9 (patch)
tree689327c749a498612424d10d6cfe2ae9af37f83e /Eigen/src/Core/Product.h
parent2bf63c6b4a6fb9f69df184dc69f3427ffd81c4a3 (diff)
It is not clear what XprType::Nested should be, so let's use nested<Xpr>::type as much as possible
Diffstat (limited to 'Eigen/src/Core/Product.h')
-rw-r--r--Eigen/src/Core/Product.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Eigen/src/Core/Product.h b/Eigen/src/Core/Product.h
index 31730983f..cac90bc1f 100644
--- a/Eigen/src/Core/Product.h
+++ b/Eigen/src/Core/Product.h
@@ -62,8 +62,8 @@ class Product : public ProductImpl<_Lhs,_Rhs,Option,
- typedef typename Lhs::Nested LhsNested;
- typedef typename Rhs::Nested RhsNested;
+ typedef typename internal::nested<Lhs>::type LhsNested;
+ typedef typename internal::nested<Rhs>::type RhsNested;
typedef typename internal::remove_all<LhsNested>::type LhsNestedCleaned;
typedef typename internal::remove_all<RhsNested>::type RhsNestedCleaned;