35 #ifndef _BLAZE_UTIL_TYPETRAITS_ISFLOATINGPOINT_H_
36 #define _BLAZE_UTIL_TYPETRAITS_ISFLOATINGPOINT_H_
43 #include <boost/type_traits/is_floating_point.hpp>
62 template<
typename T >
63 struct IsFloatingPointHelper
66 enum { value = boost::is_floating_point<T>::value };
67 typedef typename SelectType<value,TrueType,FalseType>::Type Type;
93 template<
typename T >
99 enum { value = IsFloatingPointHelper<T>::value };
100 typedef typename IsFloatingPointHelper<T>::Type Type;
Header file for the FalseType type/value trait base class.
Namespace of the Blaze C++ math library.
Definition: Blaze.h:57
Compile time check for floating point data types.This type trait tests whether or not the given templ...
Definition: IsFloatingPoint.h:94
Header file for the SelectType class template.
Header file for the TrueType type/value trait base class.