summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKelebek1 <eeeedddccc@hotmail.co.uk>2022-09-01 15:47:33 +0100
committerKelebek1 <eeeedddccc@hotmail.co.uk>2022-09-01 16:50:41 +0100
commitf294b886dbb6e34895da90dfb834c454ee3638de (patch)
tree9f98c65807f4a8c0c6f381ea97ef280d08ab3dc3 /src
parenta83a5d2e4c8932df864dd4cea2b04d87a12c8760 (diff)
Silence std::aligned_storage warnings as it's deprecated in C++23,
replace it with alignas() and a C array
Diffstat (limited to 'src')
-rw-r--r--src/common/parent_of_member.h2
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