We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
emplace_back
push_back
1 parent 4b198ff commit f2676b9Copy full SHA for f2676b9
src/node.cc
@@ -816,7 +816,7 @@ int ProcessGlobalArgs(std::vector<std::string>* args,
816
// is removed in V8.
817
if (std::find(v8_args.begin(), v8_args.end(),
818
"--no-harmony-import-assertions") == v8_args.end()) {
819
- v8_args.push_back("--harmony-import-assertions");
+ v8_args.emplace_back("--harmony-import-assertions");
820
}
821
822
auto env_opts = per_process::cli_options->per_isolate->per_env;
0 commit comments