| 48 | } |
| 49 | |
| 50 | void RowData::clear() |
| 51 | { |
| 52 | std::lock_guard<std::mutex> lock(_global_visitor_mutex); |
| 53 | |
| 54 | //destroy objercts |
| 55 | for (Annotation *p : _annotations){ |
| 56 | delete p; |
| 57 | } |
| 58 | _annotations.clear(); |
| 59 | _item_count = 0; |
| 60 | _min_annotation = 0; |
| 61 | } |
| 62 | |
| 63 | uint64_t RowData::get_max_sample() |
| 64 | { |
no outgoing calls
no test coverage detected