diff options
Diffstat (limited to 'src/common')
| -rw-r--r-- | src/common/parent_of_member.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/common/parent_of_member.h b/src/common/parent_of_member.h index 70b1c5624..8e03f17d8 100644 --- a/src/common/parent_of_member.h +++ b/src/common/parent_of_member.h @@ -11,7 +11,7 @@ namespace Common {  namespace detail {  template <typename T, size_t Size, size_t Align>  struct TypedStorageImpl { -    std::aligned_storage_t<Size, Align> storage_; +    alignas(Align) u8 storage_[Size];  };  } // namespace detail | 
