mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-01-20 15:19:07 +01:00
tidy: modernize-use-emplace
This commit is contained in:
@@ -216,7 +216,7 @@ bool ArgsManager::ParseParameters(int argc, const char* const argv[], std::strin
|
||||
m_command.push_back(key);
|
||||
while (++i < argc) {
|
||||
// The remaining args are command args
|
||||
m_command.push_back(argv[i]);
|
||||
m_command.emplace_back(argv[i]);
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user