Classe remove_cv
Cria tipo não const/volátil do tipo.
Sintaxe
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 é do formato 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);
}
remove_cv_t<const volatile int> == int
Requisitos
Cabeçalho:<type_traits>
Namespace: std