1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-01-15 20:30:12 -06:00

Silence std::aligned_storage warnings as it's deprecated in C++23,

replace it with alignas() and a C array
This commit is contained in:
Kelebek1 2022-09-01 15:47:33 +01:00
parent a83a5d2e4c
commit f294b886db

View File

@ -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