| 294 | } |
| 295 | |
| 296 | bool DecoderStack::has_annotations(const Row &row) |
| 297 | { |
| 298 | auto iter = |
| 299 | _rows.find(row); |
| 300 | if (iter != _rows.end()) |
| 301 | if(0 == (*iter).second->get_max_sample()) |
| 302 | return false; |
| 303 | else |
| 304 | return true; |
| 305 | else |
| 306 | return false; |
| 307 | } |
| 308 | |
| 309 | uint64_t DecoderStack::list_annotation_size() |
| 310 | { |
no test coverage detected