Apply modernize-use-emplace.

This commit is contained in:
Alexander Arlt
2020-04-02 17:35:48 -05:00
parent 82f57f0465
commit 90bb1d8a7c
14 changed files with 33 additions and 49 deletions
+1 -1
View File
@@ -104,7 +104,7 @@ Allowed options)",
else if (arguments.count("input-files"))
inputs = arguments["input-files"].as<vector<string>>();
else
inputs.push_back("");
inputs.emplace_back("");
bool optimize = !arguments.count("without-optimizer");
int retResult = 0;