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