Merge tag 'v0.20.7'
release v0.20.7
This commit is contained in:
@@ -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();
|
||||
|
||||
|
Reference in New Issue
Block a user