22 #ifndef _BLAZE_UTIL_TYPETRAITS_ISARITHMETIC_H_
23 #define _BLAZE_UTIL_TYPETRAITS_ISARITHMETIC_H_
30 #include <boost/type_traits/is_arithmetic.hpp>
49 template<
typename T >
50 struct IsArithmeticHelper
53 enum { value = boost::is_arithmetic<T>::value };
54 typedef typename SelectType<value,TrueType,FalseType>::Type Type;
83 template<
typename T >
89 enum { value = IsArithmeticHelper<T>::value };
90 typedef typename IsArithmeticHelper<T>::Type Type;