From a1b798e555a47a63470edb69d0b3786aae003776 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 14 Jan 2014 22:40:07 +0100 Subject: SongFilter, TagConfig: cast TAG_NUM_OF_ITEM_TYPES to integer Fixes clang warning. --- src/SongFilter.cxx | 2 +- src/tag/TagConfig.cxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/SongFilter.cxx b/src/SongFilter.cxx index 8d90c5fc8..49c966b6f 100644 --- a/src/SongFilter.cxx +++ b/src/SongFilter.cxx @@ -101,7 +101,7 @@ bool SongFilter::Item::Match(const Tag &_tag) const { bool visited_types[TAG_NUM_OF_ITEM_TYPES]; - std::fill_n(visited_types, TAG_NUM_OF_ITEM_TYPES, false); + std::fill_n(visited_types, size_t(TAG_NUM_OF_ITEM_TYPES), false); for (unsigned i = 0; i < _tag.num_items; i++) { visited_types[_tag.items[i]->type] = true; diff --git a/src/tag/TagConfig.cxx b/src/tag/TagConfig.cxx index 96fd1847f..b8be4fc4c 100644 --- a/src/tag/TagConfig.cxx +++ b/src/tag/TagConfig.cxx @@ -39,7 +39,7 @@ TagLoadConfig() if (value == nullptr) return; - std::fill_n(ignore_tag_items, TAG_NUM_OF_ITEM_TYPES, true); + std::fill_n(ignore_tag_items, size_t(TAG_NUM_OF_ITEM_TYPES), true); if (StringEqualsCaseASCII(value, "none")) return; -- cgit v1.2.3