diff options
author | Lioncash <mathew1800@gmail.com> | 2019-10-07 00:29:18 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-10-07 00:48:05 +0200 |
commit | 9aafb2a277f2fcbfcc881cf4759b66db07ae2e9f (patch) | |
tree | f78ccbd7ad9ebd5f4a68a2ece6fcd43abf14517e /src | |
parent | Merge pull request #2942 from ReinUsesLisp/clang-warnings (diff) | |
download | yuzu-9aafb2a277f2fcbfcc881cf4759b66db07ae2e9f.tar yuzu-9aafb2a277f2fcbfcc881cf4759b66db07ae2e9f.tar.gz yuzu-9aafb2a277f2fcbfcc881cf4759b66db07ae2e9f.tar.bz2 yuzu-9aafb2a277f2fcbfcc881cf4759b66db07ae2e9f.tar.lz yuzu-9aafb2a277f2fcbfcc881cf4759b66db07ae2e9f.tar.xz yuzu-9aafb2a277f2fcbfcc881cf4759b66db07ae2e9f.tar.zst yuzu-9aafb2a277f2fcbfcc881cf4759b66db07ae2e9f.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/common/alignment.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/common/alignment.h b/src/common/alignment.h index 88d5d3a65..e24f8b0e6 100644 --- a/src/common/alignment.h +++ b/src/common/alignment.h @@ -51,6 +51,11 @@ public: using reference = T&; using const_reference = const T&; + using propagate_on_container_copy_assignment = std::true_type; + using propagate_on_container_move_assignment = std::true_type; + using propagate_on_container_swap = std::true_type; + using is_always_equal = std::true_type; + public: pointer address(reference r) noexcept { return std::addressof(r); |