| 815 | } |
| 816 | |
| 817 | [[gnu::pure]] |
| 818 | static bool |
| 819 | IsSortSupported(TagType tag_type) noexcept |
| 820 | { |
| 821 | if (tag_type == TagType(SORT_TAG_LAST_MODIFIED)) { |
| 822 | return true; |
| 823 | } |
| 824 | |
| 825 | #if LIBMPDCLIENT_CHECK_VERSION(2,21,0) |
| 826 | if (tag_type == TagType(SORT_TAG_ADDED)) { |
| 827 | return true; |
| 828 | } |
| 829 | #endif |
| 830 | |
| 831 | return Convert(tag_type) != MPD_TAG_COUNT; |
| 832 | } |
| 833 | |
| 834 | [[gnu::pure]] |
| 835 | static DatabaseSelection |
no test coverage detected