It is not clear what XprType::Nested should be, so let's use nested<Xpr>::type as much as possible

This commit is contained in:
Gael Guennebaud 2014-03-11 11:44:11 +01:00
parent 2bf63c6b4a
commit 5806e73800

View File

@ -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;