aboutsummaryrefslogtreecommitdiff
path: root/src/common/alignment.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-10-06 18:29:18 -0400
committerLioncash <mathew1800@gmail.com>2019-10-06 18:48:05 -0400
commit9aafb2a277f2fcbfcc881cf4759b66db07ae2e9f (patch)
treef78ccbd7ad9ebd5f4a68a2ece6fcd43abf14517e /src/common/alignment.h
parentdeecd7f074a0547b8fc08a33fdc547eb63859e3e (diff)
alignment: Specify trait definitions within the allocator
Allows containers and other data structures to consider optimizations based off of them. We satisfy all of these requirements anyways.
Diffstat (limited to 'src/common/alignment.h')
-rw-r--r--src/common/alignment.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/common/alignment.h b/src/common/alignment.h
index 88d5d3a65f..e24f8b0e6b 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);