4#ifndef TETL_TYPE_TRAITS_IS_UNDERLYING_TYPE_HPP
5#define TETL_TYPE_TRAITS_IS_UNDERLYING_TYPE_HPP
7#include <etl/_config/all.hpp>
9#include <etl/_type_traits/is_enum.hpp>
15struct underlying_type { };
19struct underlying_type<T> {
20 using type =
__underlying_type(T);
Definition adjacent_find.hpp:9
The underlying type of an enum.
Definition underlying_type.hpp:28