| 767 | void addWrittenTags(const std::set<Tag>& tags) { written_tags.insert(tags.begin(), tags.end()); } |
| 768 | |
| 769 | void getLocations(const std::set<Tag>& tags, std::set<uint16_t>& writtenTLogs) { |
| 770 | std::vector<Tag> vtags(tags.begin(), tags.end()); |
| 771 | std::vector<int> msg_locations; |
| 772 | logSystem->getPushLocations(vtags, msg_locations, false /*allLocations*/); |
| 773 | writtenTLogs.insert(msg_locations.begin(), msg_locations.end()); |
| 774 | } |
| 775 | |
| 776 | void getLocations(const std::vector<Tag>& vtags, std::set<uint16_t>& writtenTLogs) { |
| 777 | std::vector<int> msg_locations; |
no test coverage detected