35#ifndef _BLAZE_MATH_TYPETRAITS_REMOVEADAPTOR_H_
36#define _BLAZE_MATH_TYPETRAITS_REMOVEADAPTOR_H_
110template<
typename T >
111struct RemoveAdaptor< volatile T >
115 using Type =
volatile typename RemoveAdaptor<T>::Type;
127template<
typename T >
128struct RemoveAdaptor< const volatile T >
132 using Type =
const volatile typename RemoveAdaptor<T>::Type;
152template<
typename T >
typename RemoveAdaptor< T >::Type RemoveAdaptor_t
Auxiliary alias declaration for the RemoveAdaptor type trait.
Definition: RemoveAdaptor.h:153
Removal of top level adaptor types.
Definition: RemoveAdaptor.h:77