| 40 | typedef typename vector<T>::const_reverse_iterator const_reverse_iterator; |
| 41 | |
| 42 | explicit flat_set(const context &context = system::default_context()) |
| 43 | : m_vector(context) |
| 44 | { |
| 45 | } |
| 46 | |
| 47 | flat_set(const flat_set<T> &other) |
| 48 | : m_vector(other.m_vector) |
nothing calls this directly
no outgoing calls
no test coverage detected