aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/util
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2008-08-24 15:27:05 +0000
committerGravatar Gael Guennebaud <g.gael@free.fr>2008-08-24 15:27:05 +0000
commit440664cd5dc20fd0f09d46fbf69ca72d34ae8e93 (patch)
tree3951ef6e850dbf690a4f0152059836e970af1bcf /Eigen/src/Core/util
parentba100998bfab8fcf325451be050cabb52f641f46 (diff)
temporary fix of the pèrevious commit
Diffstat (limited to 'Eigen/src/Core/util')
-rw-r--r--Eigen/src/Core/util/Meta.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/util/Meta.h b/Eigen/src/Core/util/Meta.h
index 97e455d83..bbb780053 100644
--- a/Eigen/src/Core/util/Meta.h
+++ b/Eigen/src/Core/util/Meta.h
@@ -54,7 +54,7 @@ template<typename T> struct ei_unpointer<T*const> { 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_unconst<const T&> { typedef T& type; };
+// template<typename T> struct ei_unconst<const T&> { typedef T& type; };
template<typename T> struct ei_cleantype { typedef T type; };
template<typename T> struct ei_cleantype<const T> { typedef typename ei_cleantype<T>::type type; };