| 57 | }; |
| 58 | |
| 59 | constexpr aligned_ptr() noexcept = default; |
| 60 | explicit aligned_ptr(std::nullptr_t) noexcept : ptr(nullptr) {} |
| 61 | explicit aligned_ptr(pointer ptr_, const size_t size_) noexcept : ptr(ptr_), size(size_) {} |
| 62 | aligned_ptr(aligned_ptr&& aligned_ptr_) noexcept { |