diff --git a/octa/type_traits.hh b/octa/type_traits.hh index 370a8da..9ae17c5 100644 --- a/octa/type_traits.hh +++ b/octa/type_traits.hh @@ -1116,14 +1116,14 @@ using CommonType = typename octa::detail::CommonTypeBase::Type; namespace detail { template struct AlignedTest { - union type { + union Type { octa::uchar data[N]; octa::MaxAlign align; }; }; template struct AlignedStorageBase { - struct type { + struct Type { alignas(A) octa::uchar data[N]; }; };