Blaze 3.9
RemoveVolatile.h
Go to the documentation of this file.
1//=================================================================================================
33//=================================================================================================
34
35#ifndef _BLAZE_UTIL_TYPETRAITS_REMOVEVOLATILE_H_
36#define _BLAZE_UTIL_TYPETRAITS_REMOVEVOLATILE_H_
37
38
39//*************************************************************************************************
40// Includes
41//*************************************************************************************************
42
43#include <type_traits>
44
45
46namespace blaze {
47
48//=================================================================================================
49//
50// CLASS DEFINITION
51//
52//=================================================================================================
53
54//*************************************************************************************************
70template< typename T >
72{
73 public:
74 //**********************************************************************************************
76 using Type = typename std::remove_volatile<T>::type;
78 //**********************************************************************************************
79};
80//*************************************************************************************************
81
82
83//*************************************************************************************************
96template< typename T >
98//*************************************************************************************************
99
100} // namespace blaze
101
102#endif
typename RemoveVolatile< T >::Type RemoveVolatile_t
Auxiliary alias declaration for the RemoveVolatile type trait.
Definition: RemoveVolatile.h:97
Removal of volatile-qualifiers.
Definition: RemoveVolatile.h:72