diff options
author | Max Kellermann <max@duempel.org> | 2014-07-12 17:22:39 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-07-12 17:22:39 +0200 |
commit | 41a7203c28d2cc7550f1bb05f767950d388326cd (patch) | |
tree | 0b0970bbaf06b66ec0c0b3a50d90b3f6ef65dd20 /src/db/Count.cxx | |
parent | 543a58bb874be8a510d54e91a37797b0c71b1160 (diff) |
Tag: add class const_iterator and methods begin(), end()
Enables using range-based "for".
Diffstat (limited to 'src/db/Count.cxx')
-rw-r--r-- | src/db/Count.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/db/Count.cxx b/src/db/Count.cxx index ec3eacd1f..4fd53a73b 100644 --- a/src/db/Count.cxx +++ b/src/db/Count.cxx @@ -73,9 +73,7 @@ static bool CollectGroupCounts(TagCountMap &map, TagType group, const Tag &tag) { bool found = false; - for (unsigned i = 0; i < tag.num_items; ++i) { - const TagItem &item = *tag.items[i]; - + for (const auto &item : tag) { if (item.type == group) { auto r = map.insert(std::make_pair(item.value, SearchStats())); |