| 408 | data_ = (type_ *)::operator new(sizeof(type_) * size_, std::align_val_t(alignment_)); |
| 409 | } |
| 410 | ~aligned_array() noexcept { ::operator delete(data_, sizeof(type_) * size_, std::align_val_t(alignment_)); } |
| 411 | |
| 412 | aligned_array(aligned_array const &) = delete; |
| 413 | aligned_array &operator=(aligned_array const &) = delete; |
nothing calls this directly
no outgoing calls
no test coverage detected