3#ifndef TETL_TYPE_TRAITS_ALIGNED_STORAGE_HPP
4#define TETL_TYPE_TRAITS_ALIGNED_STORAGE_HPP
17template <etl::
size_t Cap>
18union aligned_storage_impl {
49template <
size_t Len,
size_t Align = alignof(detail::aligned_storage_impl<Len>)>
52 alignas(Align)
unsigned char data[Len];
56template <
size_t Len,
size_t Align = alignof(detail::aligned_storage_impl<Len>)>
Definition adjacent_find.hpp:8
typename conditional< B, T, F >::type conditional_t
Definition conditional.hpp:21
typename aligned_storage< Len, Align >::type aligned_storage_t
Definition aligned_storage.hpp:57
Definition aligned_storage.hpp:51
unsigned char data[Len]
Definition aligned_storage.hpp:52
Provides the nested type type, which is a trivial standard-layout type suitable for use as uninitiali...
Definition aligned_storage.hpp:50