| 138 | } |
| 139 | |
| 140 | constexpr auto erase(const_iterator __first, const_iterator __last) noexcept -> iterator |
| 141 | { |
| 142 | std::move(const_cast<iterator>(__last), end(), const_cast<iterator>(__first)); |
| 143 | resize(size() - (__last - __first)); |
| 144 | return end(); |
| 145 | } |
| 146 | |
| 147 | std::size_t __size_ = 0; |
| 148 | value_type __data_[_Capacity]; |
no outgoing calls
no test coverage detected