4#ifndef TETL_TYPE_TRAITS_IS_AGGREGATE_HPP
5#define TETL_TYPE_TRAITS_IS_AGGREGATE_HPP
7#include <etl/_config/all.hpp>
9#include <etl/_type_traits/bool_constant.hpp>
10#include <etl/_type_traits/remove_cv.hpp>
15struct is_aggregate : bool_constant<
__is_aggregate(remove_cv_t<T>)> { };
Definition adjacent_find.hpp:9
constexpr bool is_aggregate_v
Definition is_aggregate.hpp:18
Definition is_aggregate.hpp:15