bsl::remove_cv_t

remove_cv_t is an alias to the return type of the bsl::remove_cv meta-function. Note, that the remove_cv_t avoids the ::type suffix and typename prefix when we want to use the result of the meta-function in templates.

Synopsis

Declared in <bslmf_removecv.h>

template<class t_TYPE>
using remove_cv_t = remove_cv<t_TYPE>::type;