4#ifndef TETL_TYPE_TRAITS_REMOVE_CVREF_HPP
5#define TETL_TYPE_TRAITS_REMOVE_CVREF_HPP
7#include <etl/_type_traits/remove_cv.hpp>
8#include <etl/_type_traits/remove_reference.hpp>
20 using type = remove_cv_t<remove_reference_t<T>>;
24using remove_cvref_t = remove_cv_t<remove_reference_t<T>>;
Definition adjacent_find.hpp:9
If the type T is a reference type, provides the member typedef type which is the type referred to by ...
Definition remove_cvref.hpp:19