aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/Product.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2013-02-28 19:29:32 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2013-02-28 19:29:32 +0100
commite5bf4440c0b43e467b7fc2ebc3f1c49a545ed115 (patch)
tree243bee3dfd381bf9e50f320ac7a6c0014e685034 /Eigen/src/Core/Product.h
parent0fac91ac229cefacd52989a5796cb29ba5458b2b (diff)
Fix "type qualifiers are meaningless here" warnings
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 314851d2e..3a08c027c 100644
--- a/Eigen/src/Core/Product.h
+++ b/Eigen/src/Core/Product.h
@@ -74,8 +74,8 @@ class Product : public ProductImpl<Lhs,Rhs,typename internal::promote_storage_ty
protected:
- const LhsNested m_lhs;
- const RhsNested m_rhs;
+ LhsNested m_lhs;
+ RhsNested m_rhs;
};
template<typename Lhs, typename Rhs>