diff options
Diffstat (limited to '')
| -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: | |||
| 51 | using reference = T&; | 51 | using reference = T&; |
| 52 | using const_reference = const T&; | 52 | using const_reference = const T&; |
| 53 | 53 | ||
| 54 | using propagate_on_container_copy_assignment = std::true_type; | ||
| 55 | using propagate_on_container_move_assignment = std::true_type; | ||
| 56 | using propagate_on_container_swap = std::true_type; | ||
| 57 | using is_always_equal = std::true_type; | ||
| 58 | |||
| 54 | public: | 59 | public: |
| 55 | pointer address(reference r) noexcept { | 60 | pointer address(reference r) noexcept { |
| 56 | return std::addressof(r); | 61 | return std::addressof(r); |