mirror of
https://github.com/zeek/zeek.git
synced 2025-10-06 08:38:20 +00:00
Fix clang-tidy modernize-use-emplace findings
This commit is contained in:
parent
3943e64372
commit
a3078f3132
9 changed files with 19 additions and 20 deletions
|
@ -376,7 +376,7 @@ NameExprPtr Reducer::GenInlineBlockName(const IDPtr& id) {
|
|||
|
||||
void Reducer::PushInlineBlock() {
|
||||
++inline_block_level;
|
||||
block_locals.emplace_back(std::unordered_map<const ID*, IDPtr>());
|
||||
block_locals.emplace_back();
|
||||
}
|
||||
|
||||
void Reducer::PopInlineBlock() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue