summaryrefslogtreecommitdiff
path: root/src/init.cpp
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2022-01-04 12:28:55 +0000
committerSadie Powell <sadie@witchery.services>2022-01-04 12:28:55 +0000
commit106750db77be01c7b2d277a12d9b80de15cb8fbb (patch)
tree87df7f8b5966ca704f20ee7ab6a79b45ed2e95a2 /src/init.cpp
parent7d1047490e4380c4f02900b711c66055d29fb387 (diff)
Replace all uses of push_back with emplace_back.
Diffstat (limited to 'src/init.cpp')
-rw-r--r--src/init.cpp2
1 files changed, 1 insertions, 1 deletions
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);
}
}