description | title | ms.date | f1_keywords | helpviewer_keywords | ms.assetid | |||
---|---|---|---|---|---|---|---|---|
Learn more about: remove_cv Class |
remove_cv Class |
11/04/2016 |
|
|
8502602a-1c80-479c-84e0-33bd1d6496d6 |
Makes non const/volatile type from type.
template <class T>
struct remove_cv;
template <class T>
using remove_cv_t = typename remove_cv<T>::type;
T
The type to modify.
An instance of remove_cv<T>
holds a modified-type that is T1
when T is of the form const T1
, volatile T1
, or const volatile T1
, otherwise T.
#include <type_traits>
#include <iostream>
int main()
{
int *p = (std::remove_cv_t<const volatile int> *)0;
p = p; // to quiet "unused" warning
std::cout << "remove_cv_t<const volatile int> == "
<< typeid(*p).name() << std::endl;
return (0);
}
remove_cv_t<const volatile int> == int
Header: <type_traits>
Namespace: std