From efb79600b98b210f09d030f5c307b99c45ef0ad5 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Mon, 5 Jul 2010 11:23:05 +0200 Subject: [PATCH] fix warning "type qualifiers ignored on function return type" for long long scalar types --- Eigen/src/Core/util/Meta.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Eigen/src/Core/util/Meta.h b/Eigen/src/Core/util/Meta.h index 481b0ceb2..9d73ef51c 100644 --- a/Eigen/src/Core/util/Meta.h +++ b/Eigen/src/Core/util/Meta.h @@ -78,6 +78,8 @@ template<> struct ei_is_arithmetic { enum { ret = true }; }; template<> struct ei_is_arithmetic { enum { ret = true }; }; template<> struct ei_is_arithmetic { enum { ret = true }; }; template<> struct ei_is_arithmetic { enum { ret = true }; }; +template<> struct ei_is_arithmetic { enum { ret = true }; }; +template<> struct ei_is_arithmetic { enum { ret = true }; }; template struct ei_makeconst { typedef const T type; }; template struct ei_makeconst { typedef const T type; };