Classe remove_cv
Cria tipo não const/volátil do tipo.
template<class T>
struct remove_cv;
template<class T>
using remove_cv_t = typename remove_cv<T>::type;
Parâmetros
- T
O tipo a ser modificado.
Comentários
Uma instância de remove_cv<T> mantém um tipo modificado que é T1 quando T é da forma const T1, volatile T1 ou const volatile T1, caso contrário T.
Exemplo
#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);
}
Requisitos
Cabeçalho: <type_traits>
Namespace: std