| 211 | |
| 212 | public: |
| 213 | priority_queue(const compare_type& cmp, const container_type& cc) |
| 214 | : comp{cmp}, c{cc} |
| 215 | { |
| 216 | make_heap(c.begin(), c.end(), comp); |
| 217 | } |
| 218 | |
| 219 | explicit priority_queue(const compare_type& cmp = compare_type{}, |
| 220 | container_type&& cc = container_type{}) |