35 #ifndef _BLAZE_UTIL_TYPETRAITS_REMOVECV_H_
36 #define _BLAZE_UTIL_TYPETRAITS_REMOVECV_H_
43 #include <type_traits>
70 template<
typename T >
76 typedef typename std::remove_cv<T>::type Type;
96 template<
typename T >
typename RemoveCV< T >::Type RemoveCV_
Auxiliary alias declaration for the RemoveCV type trait.The RemoveCV_ alias declaration provides a co...
Definition: RemoveCV.h:97
Namespace of the Blaze C++ math library.
Definition: Blaze.h:57
Removal of top level cv-qualifiers.The RemoveCV type trait removes all top level cv-qualifiers from t...
Definition: RemoveCV.h:71