aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/util/Meta.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2008-05-05 17:19:47 +0000
committerGravatar Gael Guennebaud <g.gael@free.fr>2008-05-05 17:19:47 +0000
commit64c49de7baf6b843739b170d61aebc744d943ba9 (patch)
treef3aa15411d1f0cfba7cc262581c9802952b2d90b /Eigen/src/Core/util/Meta.h
parent46fa4c713fa2fdb472e287cad95b5933135e6503 (diff)
* split PacketMath.h to SSE and Altivec specific files
* improved the flexibility of the new product implementation, now all sizes seems to be properly handled.
Diffstat (limited to 'Eigen/src/Core/util/Meta.h')
-rw-r--r--Eigen/src/Core/util/Meta.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Eigen/src/Core/util/Meta.h b/Eigen/src/Core/util/Meta.h
index 19768c1ca..264802b9b 100644
--- a/Eigen/src/Core/util/Meta.h
+++ b/Eigen/src/Core/util/Meta.h
@@ -189,6 +189,9 @@ template<typename T> class ei_eval
template<typename T> struct ei_unref { typedef T type; };
template<typename T> struct ei_unref<T&> { typedef T type; };
+template<typename T> struct ei_unconst { typedef T type; };
+template<typename T> struct ei_unconst<const T> { typedef T type; };
+
template<typename T> struct ei_is_temporary
{
enum { ret = 0 };