mirror of
https://github.com/anope/anope.git
synced 2026-06-25 03:46:36 +02:00
Replace all uses of push_back with emplace_back.
This commit is contained in:
+1
-1
@@ -57,7 +57,7 @@ static void ParseCommandLineArguments(int ac, char **av)
|
||||
if (option.empty())
|
||||
continue;
|
||||
|
||||
CommandLineArguments.push_back(std::make_pair(option, param));
|
||||
CommandLineArguments.emplace_back(option, param);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user