aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/util/Meta.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2012-01-31 21:45:03 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2012-01-31 21:45:03 +0100
commit9a954d29ecdfcf40a4c3c17e8adad549ebaf1710 (patch)
tree77c1d0518f8f3ef61aacbb90407f8f8140f2ebc7 /Eigen/src/Core/util/Meta.h
parent634fedaf68c397e0ae487ce87929884c5af5e36c (diff)
rm non standard and useless overloads of is_arithmetic for long long
Diffstat (limited to 'Eigen/src/Core/util/Meta.h')
-rw-r--r--Eigen/src/Core/util/Meta.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/Eigen/src/Core/util/Meta.h b/Eigen/src/Core/util/Meta.h
index 4518261ef..22fbd30b8 100644
--- a/Eigen/src/Core/util/Meta.h
+++ b/Eigen/src/Core/util/Meta.h
@@ -80,8 +80,6 @@ template<> struct is_arithmetic<signed int> { enum { value = true }; };
template<> struct is_arithmetic<unsigned int> { enum { value = true }; };
template<> struct is_arithmetic<signed long> { enum { value = true }; };
template<> struct is_arithmetic<unsigned long> { enum { value = true }; };
-template<> struct is_arithmetic<signed long long> { enum { value = true }; };
-template<> struct is_arithmetic<unsigned long long> { enum { value = true }; };
template <typename T> struct add_const { typedef const T type; };
template <typename T> struct add_const<T&> { typedef T& type; };