Skip to content
Snippets Groups Projects
Unverified Commit 199f77b9 authored by Mai's avatar Mai Committed by GitHub
Browse files

Merge pull request #8843 from Kelebek1/SILENCE_WENCH

Silence a million MSVC warnings
parents 6690dfc4 f294b886
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment