| 211 | // For containers with insert(key, value) (SortedHeapMap, unsorted_map_fixed) |
| 212 | template<typename Container> |
| 213 | typename fl::enable_if<has_insert_key_value<Container>::value, void>::type |
| 214 | populate_map(Container& c, int key, fl::shared_ptr<int> ptr) { |
| 215 | c.insert(key, ptr); |
| 216 | } |
| 217 | |
| 218 | // For containers with operator[] (map, unordered_map) |
| 219 | template<typename Container> |
no test coverage detected