summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKelebek1 <eeeedddccc@hotmail.co.uk>2022-09-01 16:47:33 +0200
committerKelebek1 <eeeedddccc@hotmail.co.uk>2022-09-01 17:50:41 +0200
commitf294b886dbb6e34895da90dfb834c454ee3638de (patch)
tree9f98c65807f4a8c0c6f381ea97ef280d08ab3dc3
parentMerge pull request #8752 from vonchenplus/rectangle_texture (diff)
downloadyuzu-f294b886dbb6e34895da90dfb834c454ee3638de.tar
yuzu-f294b886dbb6e34895da90dfb834c454ee3638de.tar.gz
yuzu-f294b886dbb6e34895da90dfb834c454ee3638de.tar.bz2
yuzu-f294b886dbb6e34895da90dfb834c454ee3638de.tar.lz
yuzu-f294b886dbb6e34895da90dfb834c454ee3638de.tar.xz
yuzu-f294b886dbb6e34895da90dfb834c454ee3638de.tar.zst
yuzu-f294b886dbb6e34895da90dfb834c454ee3638de.zip
-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