aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/Product.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2010-02-19 17:46:36 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2010-02-19 17:46:36 +0100
commit4f8773c23af0b3f16d4382494e6802f02b16af09 (patch)
treecf1722e1bd59757b7077405e89c6b1c16106b661 /Eigen/src/Core/Product.h
parent39d9f0275b8c9ef515b04f7b0e51f701edabbcad (diff)
fix stupid enum values
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 af05773ee..fe6d29c7d 100644
--- a/Eigen/src/Core/Product.h
+++ b/Eigen/src/Core/Product.h
@@ -50,8 +50,8 @@ class GeneralProduct;
template<int Rows, int Cols, int Depth> struct ei_product_type_selector;
enum {
- Large = Dynamic,
- Small = Dynamic/2
+ Large = 2,
+ Small = 3
};
template<typename Lhs, typename Rhs> struct ei_product_type