From 106750db77be01c7b2d277a12d9b80de15cb8fbb Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Tue, 4 Jan 2022 12:28:55 +0000 Subject: Replace all uses of push_back with emplace_back. --- src/init.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/init.cpp') diff --git a/src/init.cpp b/src/init.cpp index 42cba3f10..48e3ebbfc 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -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); } } -- cgit