Browse Source
Merge pull request #8843 from Kelebek1/SILENCE_WENCH
Silence a million MSVC warnings
pull/15/merge
Mai
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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 |
|
|
|
|
|
|
|
|