Merge tag 'v0.20.7'

release v0.20.7
This commit is contained in:
Max Kellermann
2017-05-15 23:01:49 +02:00
289 changed files with 914 additions and 924 deletions

View File

@@ -153,7 +153,7 @@ TagBuilder::CommitNew()
}
bool
TagBuilder::HasType(TagType type) const
TagBuilder::HasType(TagType type) const noexcept
{
for (auto i : items)
if (i->type == type)
@@ -237,7 +237,7 @@ TagBuilder::AddEmptyItem(TagType type)
}
void
TagBuilder::RemoveAll()
TagBuilder::RemoveAll() noexcept
{
tag_pool_lock.lock();
for (auto i : items)
@@ -248,7 +248,7 @@ TagBuilder::RemoveAll()
}
void
TagBuilder::RemoveType(TagType type)
TagBuilder::RemoveType(TagType type) noexcept
{
const auto begin = items.begin(), end = items.end();