diff options
Diffstat (limited to 'src')
| -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 { | |||
| 11 | namespace detail { | 11 | namespace detail { |
| 12 | template <typename T, size_t Size, size_t Align> | 12 | template <typename T, size_t Size, size_t Align> |
| 13 | struct TypedStorageImpl { | 13 | struct TypedStorageImpl { |
| 14 | std::aligned_storage_t<Size, Align> storage_; | 14 | alignas(Align) u8 storage_[Size]; |
| 15 | }; | 15 | }; |
| 16 | } // namespace detail | 16 | } // namespace detail |
| 17 | 17 | ||