| 235 | } |
| 236 | |
| 237 | void setFlag(const key_type& key, SeqFlag flag) |
| 238 | { |
| 239 | bool rc; |
| 240 | iterator it = find(key, rc); |
| 241 | assert(it != m_data.end()); |
| 242 | it->second.setFlag(rc ? complement(flag) : flag); |
| 243 | } |
| 244 | |
| 245 | /** Mark the specified sequence in both directions. */ |
| 246 | void mark(const key_type& seq) |
nothing calls this directly
no test coverage detected