aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/Product.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2013-12-14 22:53:47 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2013-12-14 22:53:47 +0100
commitd357bbd9c06f4b6088de0a8e47b3e56fdd0b99b3 (patch)
tree344a2618a4d283f08816498f6da210e90bf4bb54 /Eigen/src/Core/Product.h
parent27c068e9d6230398b74a1c7b7146d7842c509de7 (diff)
Fix a few regression regarding temporaries and products
Diffstat (limited to 'Eigen/src/Core/Product.h')
-rw-r--r--Eigen/src/Core/Product.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/Product.h b/Eigen/src/Core/Product.h
index 79d09fbb6..d64fbae35 100644
--- a/Eigen/src/Core/Product.h
+++ b/Eigen/src/Core/Product.h
@@ -88,7 +88,7 @@ class Product : public ProductImpl<_Lhs,_Rhs,Option,
namespace internal {
-template<typename Lhs, typename Rhs, int Option, int ProductTab = internal::product_tag<Lhs,Rhs>::ret>
+template<typename Lhs, typename Rhs, int Option, int ProductTag = internal::product_type<Lhs,Rhs>::ret>
class dense_product_base
: public internal::dense_xpr_base<Product<Lhs,Rhs,Option> >::type
{};