'tors
| 47 | { |
| 48 | public: // 'tors |
| 49 | Arena() noexcept |
| 50 | : ptr_(buf_) |
| 51 | { |
| 52 | static_assert (alignment <= alignof(std::max_align_t), |
| 53 | "Alignment chosen is more than the maximum supported alignment"); |
| 54 | } |
| 55 | |
| 56 | /// Non copyable and assignable |
| 57 | Arena(const Arena&) = delete; |
nothing calls this directly
no outgoing calls
no test coverage detected