| 1095 | template <class T, class H, class P, class A> |
| 1096 | template <class InputIt> |
| 1097 | void unordered_set<T,H,P,A>::insert(InputIt first, InputIt last) |
| 1098 | { |
| 1099 | table_.insert_range(first, last); |
| 1100 | } |
| 1101 | |
| 1102 | #if !defined(BOOST_NO_CXX11_HDR_INITIALIZER_LIST) |
| 1103 | template <class T, class H, class P, class A> |
nothing calls this directly
no test coverage detected