| 896 | private: |
| 897 | template <class U, class V> |
| 898 | void insert_pair(const std::pair<U, V>& value) { |
| 899 | insert(value.first, value.second); |
| 900 | } |
| 901 | |
| 902 | template <class U, class V> |
| 903 | void insert_pair(std::pair<U, V>&& value) { |
nothing calls this directly
no outgoing calls
no test coverage detected