| 657 | } |
| 658 | |
| 659 | bool TruncType(std::string & type) |
| 660 | { |
| 661 | auto const pos = type.rfind('-'); |
| 662 | if (pos == std::string::npos) |
| 663 | return false; |
| 664 | type.resize(pos); |
| 665 | return true; |
| 666 | } |
| 667 | |
| 668 | BookmarkBaseType GetBookmarkBaseType(std::vector<uint32_t> const & featureTypes) |
| 669 | { |
no test coverage detected