4#ifndef TETL_TYPE_TRAITS_REMOVE_CV_HPP
5#define TETL_TYPE_TRAITS_REMOVE_CV_HPP
7#include <etl/_type_traits/remove_const.hpp>
8#include <etl/_type_traits/remove_volatile.hpp>
19 using type = remove_const_t<remove_volatile_t<T>>;
23using remove_cv_t = remove_const_t<remove_volatile_t<T>>;
Definition adjacent_find.hpp:9
Provides the member typedef type which is the same as T, except that its topmost cv-qualifiers are re...
Definition remove_cv.hpp:18