| 193 | V.emplace_back(std::forward<Args>(A)...); |
| 194 | } |
| 195 | void pop_back() { V.pop_back(); } |
| 196 | // FIXME: insert() takes const_iterator since C++11, old libstdc++ disagrees. |
| 197 | iterator insert(iterator P, const Value &E) { return V.insert(P, E); } |
| 198 | iterator insert(iterator P, Value &&E) { |
no outgoing calls