| 130 | T& push_back(T&& t) {return * new(grow()) T(std::move(t));} |
| 131 | |
| 132 | void pop_back() {get(_size - 1).~T(); --_size;} |
| 133 | |
| 134 | template <class... Args> |
| 135 | T& emplace_back(Args&&... args) { |
nothing calls this directly
no outgoing calls
no test coverage detected