35 #ifndef _BLAZE_UTIL_TYPETRAITS_MAKESIGNED_H_
36 #define _BLAZE_UTIL_TYPETRAITS_MAKESIGNED_H_
43 #include <type_traits>
72 template<
typename T >
78 typedef typename std::make_signed<T>::type Type;
98 template<
typename T >
typename MakeSigned< T >::Type MakeSigned_
Auxiliary alias declaration for the MakeSigned type trait.The MakeSigned_ alias declaration provides ...
Definition: MakeSigned.h:99
Namespace of the Blaze C++ math library.
Definition: Blaze.h:57
Compile time type conversion into a signed integral type.This type trait provides the feature to conv...
Definition: MakeSigned.h:73