| 238 | |
| 239 | template <typename P> |
| 240 | std::pair<iterator, bool> insert(const P& p) { |
| 241 | return Insert(p.first, p.second); |
| 242 | } |
| 243 | std::pair<iterator, bool> insert(const std::pair<const Key, Val>& p) { |
| 244 | return Insert(p.first, p.second); |
| 245 | } |
no outgoing calls