summaryrefslogtreecommitdiffstats
path: root/src/common
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-10-21 00:17:50 +0200
committerGitHub <noreply@github.com>2021-10-21 00:17:50 +0200
commitb65314dc213b61218772bb75df6362b02666c88a (patch)
tree685813e5c402326e30bba9daf6aff9d55cfb8b1a /src/common
parentMerge pull request #7197 from Moonlacer/tas_help_link (diff)
parentcommon/alignment: Fix VS2022 compilation (diff)
downloadyuzu-b65314dc213b61218772bb75df6362b02666c88a.tar
yuzu-b65314dc213b61218772bb75df6362b02666c88a.tar.gz
yuzu-b65314dc213b61218772bb75df6362b02666c88a.tar.bz2
yuzu-b65314dc213b61218772bb75df6362b02666c88a.tar.lz
yuzu-b65314dc213b61218772bb75df6362b02666c88a.tar.xz
yuzu-b65314dc213b61218772bb75df6362b02666c88a.tar.zst
yuzu-b65314dc213b61218772bb75df6362b02666c88a.zip
Diffstat (limited to 'src/common')
-rw-r--r--src/common/alignment.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/common/alignment.h b/src/common/alignment.h
index 1b56569d1..8570c7d3c 100644
--- a/src/common/alignment.h
+++ b/src/common/alignment.h
@@ -64,7 +64,7 @@ public:
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;
+ using is_always_equal = std::false_type;
constexpr AlignmentAllocator() noexcept = default;
@@ -83,6 +83,11 @@ public:
struct rebind {
using other = AlignmentAllocator<T2, Align>;
};
+
+ template <typename T2, size_t Align2>
+ constexpr bool operator==(const AlignmentAllocator<T2, Align2>&) const noexcept {
+ return std::is_same_v<T, T2> && Align == Align2;
+ }
};
} // namespace Common